C#进阶-字符串处理

1.字符串的创建

1.使用String s=""的方式

2.使用字符串的构造方法

3.Copy

4.Clone的方式

示例:

String s = "abc";

String s = new String("fgh".ToCharArray());

String copyS = String.Copy(s);

String newS = s.Clone() as String;

2.字符串的特性

String类用来比较两个字符串、查找和抽取串中的字符或子串。

string可以看做是char的只读数组。

C#中字符串有一个重要的特性:不可变性,字符串一旦声明就不再可以改变。

注意:对该类对象的任何操作都将返回一个新的字符串对象 除了Clone Clone直接将该字符串的引用返回了

示例:

String s1 = "a";

String s2 = s1 + "b";

Console.WriteLine(Object.ReferenceEquals (s1,s2));

谁说字符串不可变?string s = "abc";s="123“;,s这不是变了吗

要区分变量名和变量指向的值的区别。程序中可以有很多字符串,然后由字符串变量指向他们,变量可以指向其他的字符串,但是字符串本身没有变化。字符串不可变性指的是内存中的字符串不可变,而不是变量不变。

string s10 = s;//s10指向s指向的字符串,而不是s10指向s,哪怕s以后指向了其他内存,那么s10还是指向从前s指向的字符串。

3.字符串的遍历

字符串是一个字符数组

所以可以用遍历数组的方式遍历字符串的每一个位子的字符

示例:

String s1 = "123456";

for (int i=0;i

4.字符串大小写的转换

ToLower 方法

ToUpper 方法

一般用于不区分大小写比较

5.字符串的截取

Substring 方法

Substring(Int32)

Substring(Int32, Int32)

示例:

String s = "We will go further to modify a String by copy! ";        

Console.WriteLine("From String\"" + s + "\"");        

String sub1 = s.Substring(21);     

String sub2 = s.Substring(0,21);       

Console.WriteLine("Get a sub string from index 21 to the end:"+ sub1);       

Console.WriteLine("Get a sub string from index 0 to 20:" + sub2);        

String cons=String.Concat(sub1,sub2);        

Console.WriteLine("Concat two sub string into one:\n" + cons);

6.字符串的分割

Split(重载的参数列表)

用于将字符串按某字符或者某字符串进行分割

例子:

解析IP格式 并判断每个IP段是否在合理范围

xxx.xxx.xxx.xxx

7.字符串的替换

Replace 方法

示例:

屏蔽掉敏感词汇

8.字符串的查询

IndexOf 方法

LastIndexOf 方法

StartsWith 方法

EndsWith 方法

9.字符串和ASCII的转换

字符串是字符组成的一个序列

而字符底层是一个ASCII码

所以字符串可以转换成ASCII码组成的一个序列

System.Text.ASCIIEncoding.ASCII.GetBytes(字符串)的方式

10.字符串的格式化

Format 方法

标准的数学格式字符串用于返回通常使用的字符串。它们通常象X0这样的格式。X是格式化标识符,0是精度标识符。格式标识符号共有9种,它们代表了大多数常用的数字格式。就像下表所示:

String.Format("{0}{1}{2}{0}{1}{2}","a","b","c");

1、格式化货币(跟系统的环境有关,中文系统默认格式化人民币,英文系统格式化美元)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:C}",0.2) //结果为:¥0.20 (英文操作系统结果:$0.20)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

默认格式化小数点后面保留两位小数,如果需要保留一位或者更多,可以指定位数

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:C1}",23.15) //结果为:¥23.2 (截取会自动四舍五入)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

格式化多个Object实例

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("市场价:{0:C},优惠价{1:C}",23.15,19.82)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

2、格式化十进制的数字(格式化成固定的位数,位数不能少于未格式化前,只支持整形)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:D3}",23) //结果为:023

string.Format("{0:D2}",1223) //结果为:1223,(精度说明符指示结果字符串中所需的最少数字个数。)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

3、用逗号隔开的数字,并指定小数点后的位数

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:N}", 14200) //结果为:14,200.00 (默认为小数点后面两位)

string.Format("{0:N3}", 14200.2458) //结果为:14,200.246 (自动四舍五入)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

4、格式化百分比

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:P}", 0.24583) //结果为:24.58% (默认保留百分的两位小数)

string.Format("{0:P1}", 0.24583)// 结果为:24.6% (自动四舍五入)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

5、零占位符

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:0000.00}", 12394.039) //结果为:12394.04

string.Format("{0:0000.00}", 194.039) //结果为:0194.04

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

6、日期格式化

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

string.Format("{0:d}",System.DateTime.Now)

string.Format("{0:D}",System.DateTime.Now)

string.Format("{0:f}",System.DateTime.Now)

string.Format("{0:F}",System.DateTime.Now)

string.Format("{0:g}",System.DateTime.Now)

string.Format("{0:G}",System.DateTime.Now)

string.Format("{0:m}",System.DateTime.Now)

string.Format("{0:t}",System.DateTime.Now)

string.Format("{0:T}",System.DateTime.Now)

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

你可能感兴趣的:(C#进阶-字符串处理)