轉載請註明來源 https://www.cnblogs.com/brucejiao/p/16188865.html 謝謝! 轉載請註明來源 https://www.cnblogs.com/brucejiao/p/16188865.html 謝謝! 轉載請註明來源 https://www.cnblog ...
轉載請註明來源 https://www.cnblogs.com/brucejiao/p/16188865.html 謝謝!
轉載請註明來源 https://www.cnblogs.com/brucejiao/p/16188865.html 謝謝!
轉載請註明來源 https://www.cnblogs.com/brucejiao/p/16188865.html 謝謝!
String
常用靜態方法
string.Compare(string str1,string str2,bool ignoreCase)
按照字典順序比較字元串
當str1 > str2時,返回1
當str1 = str2時,返回0
當str1 < str2時,返回-1
ignoreCase:true 忽略大小寫
string.Concat(string str1,string str2)
string str=string.Concat("c","#"); //str="c#";
String.Format(string str)
string str=String.Format("今年是{0}年","2022");//str="今年是2022年";
string.IsNullOrEmpty(string str1)
- 判斷字元是否為null或者為空,返回值為bool
string str2="";
bool b2=string.IsNullOrEmpty(str2);//b2=true;
string str3=null;
bool b3=string.IsNullOrEmpty(str3);//b3=true;
string.Join(string str,string[] strArr)
- 將數組strArr中的內容拼接成一個新的字元串,併在對應數組的每兩項間添加分隔符str
string strs=string.Join(",",string[]{"w","e","r","t"});//strs="w,e,r,t";
split去重
string update_invoice = FINVO System.CollectionICENUMBER + "," + invoiceNumber; // 追加發票號
string[] oldInvoiceList = update_invoice.Split(new Char[] { ',' });
string update_invoice_str = string.Join(",", oldInvoiceList.Distinct().ToArray());
Contains
- Contains 判斷字元串中是否包含某個字元,返回bool值
string str="我愛編程";
bool b=str.Contains("程");//b=true;
StartsWith/EndsWith
string str="我好喜歡你";
bool b1=str.StartsWith("好");//b1=false;
bool b2-str.EndsWith("你");//b2=true;
Equals
string str1="asd";
string str2="ert";
bool b = str1.Equals(str2); //b=false;
bool <strName>.Equals(string str, StringComparison.OrdinalIgnoreCase) //表示不區分大小寫
IndexOf/LastIndexOf
- 判斷字元串第一次出現(IndexOf)和最後一次出現(LastIndexOf )的位置,如果沒有出現過則返回值為-1
string str ="今天的雨很大,天很冷";
int i=str.IndexOf("很"); //i=4;
int i=str.LastIndexOf("很");//j=8;
int m=str.IndexOf("小");//m=-1;
Replace
string str="好睏呀";
string s=str.Replace("困","精神");//s="好精神呀";
Insert
- 在字元串的index位置上插入字元,原來的字元依次後移,變成一個新的字元串
string str="夜深了";
string s=str.Insert(1,"已經");// s="夜已經深了"
Remove
- 在字元串中移除從startIndex開始,長度為length的字元串,剩下的字元合為一個新的字元串(
= .Remove(startIndex,length)