b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

时间:2022-06-05 03:50:29

3: 转义字符

4:字符串简介

5:字符串要领

1:字符的界说

char与Unicode一一对应,一个char 2个字节。

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

2:字符的使用要领:

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

实例:

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

static void Main() { char a = a; char b = 0; char c = A; if (char.IsLetter(a)){ //判断小写 Console.WriteLine("a是{0}小写,转大写是{1}", a, char.ToUpper(a)); } if (char.IsDigit(b)){ //判断是否是数据 Console.WriteLine("b是{0}数字;",b); } Console.WriteLine(char.ToLower(c)); //转换成小写 Console.ReadKey(); }

3:转义字符

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

  4:字符串简介

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

字符集和字符编码的关系:

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

常用的字符集和字符编码:

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

ASCII码表的检察:

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

5:字符串的要领

1:将字符串转换成巨细

static void Main() { string res = "jack"; char s1 = ‘s‘; Console.WriteLine(res.ToUpper()); //字符串变大写 Console.WriteLine(char.ToUpper(s1)); //字符变大写 Console.ReadKey(); }

2:字符串的对照

要领:

1: == 

2:String.Equals(arg1,arg2)  ##返回布尔值

3:String.Compare(arg1,arg2,[true|false])  ##可选的是true Or false 代表了是否可以忽略字符的巨细写

b);}Console.WriteLine( char .ToLower(c)); //转换成小写Console.Rea

namespace HelloWorld { class Hello { static void Main() { string res = "jack"; string res2 = "jack"; Console.WriteLine(string.Equals(res,res2)); Console.WriteLine(string.Compare(res,res2)); Console.ReadKey(); } } } //true // 0

说明下:compare的要领: