标签:
引用类型 string 常用的
1.判断是否包含字符串
string a="我ABCDEFG爱你";
Contains("字符串");
bool result=a.Contais("ABCDEFG")
返回:true;
2.分割符Split截取字段
string b="abcdef&fghij&klmn";
string [] c=b.split("&");
c[0]="abcdef";
c[1]="fghij";
c[2]="klmn";
3.连接字符串的方法。
3.1 Concat
string stra="Hello";
string strb="World!";
string newstr="";这里顺便提醒下自己string str=null;string str="";的区别。一句话,前者未分配内存,后者为str 开辟了一个""的内存空间。
newstr=Concat(stra,"",strb);
输出值:Hello World!
3.2Join
string stra="Hello";
string strb="World!";
string newstr="";
string[] a={stra,strb};
newstr=string.join("",a);
输出值:Hello word!
3.3 "+" 这个 不说了吧,因为想起来了 加上这个
4.有分割 有连接 坑定也插入 Insert(int InsertIndex,string value) ,索引是从0开始的
4.1 string stra="Hello";
string strb="World!";
string newstr="";
newstr=stra.Insert(1,strb);
输出值:HWorld!ell
5.删除 Remove() 从一个字符串的制定位置开始,删除指定数量的字符。
Remove(int stratIndex,int count )
string stra="Hello";
string newStr="";
newStr=stra.Remove(1,3);
输出值:Ho
还想起一个,Trim();TrimStart();TrimEnd();去除空字符串的。
6.替换 Replace();
Replace(char oldchar,char newchar);
string stra="Hello";
string newstr="";
newstr=stra.Replace("ll","r");
输出:Hero
7.跟换大小写
ToUpper();
ToLower();
标签:
原文地址:http://www.cnblogs.com/zhaoCat/p/5132049.html