string 属于特殊的引用类型
字符串创建的三种方式
cs
string s = "路飞";//自变量定义方式
字符串当中如果要有特殊的符号,使用\进行转义
\t tab
\n 换行
\r return键
cs
s = "123\rb\tc\nd,想在字符串当中展示引号,需要使用\"进行转义,想输入一个右斜杠\\,想显示\\t\\r\\n";
Console.WriteLine(s);
@ 创建的字符 保留字符串当中所有的特殊符号的写法 即使换行效果也会保留
cs
string c = @"写啥就是啥.\t\r\n""
回车
";
通过使用字符数组创建字符 通过new 转成字符串结构
cs
char[] char1 = new Char[3]{'老','头','子'};
string s1 = new string(char1);
Console.WriteLine(s1);
字符串的属性
cs
string aa = "abcd";
// 可以通过索引值取其中一个字符
Console.WriteLine(aa[0]);
// 获取字符串的长度
Console.WriteLine(aa.Length);
Console.WriteLine(c);
字符串常用的方法
cs
string a1 = "abc";
string a2 = "CBA123456dasge";
string a3 = "123";
1 Concat() 合并字符串
cs
string a4 = string.Concat(a1, a2, a3);
Console.WriteLine(a4);
2 判断给定的字符串是否出现在字符串中
cs
bool b = a2.Contains("BA");
Console.WriteLine(b);// true
Console.WriteLine(a2.Contains("c"));// false
3判断一个字符串是否以XX开头的 StartsWith() 以...开头
cs
string name1 = "老王";
string name2 = "老王王1";
string name3 = "隔壁老王";
Console.WriteLine(name1.StartsWith("老"));// true
// EndsWith("老王") 以...结尾
Console.WriteLine(name1.EndsWith("老王"));// true
// Equals 判断是否于给定的字符相等
Console.WriteLine(name3.Equals("隔壁老王"));// true
6.查询某个字符在字符串当中出现的位置
cs
Console.WriteLine(name2.IndexOf("王总"));// -1
// 参数2 只会影响开始查询的位置
Console.WriteLine(name2.IndexOf("王",3));// -1
Console.WriteLine(name2.LastIndexOf("王"));
Console.ReadKey();