C#字符串几个常用函数
[csharp]
检索位置
string str = "efef888wwwwww";-
int i=str.IndexOf('w');
Console.WriteLine(i);
在指定的索引位置插入字符串
string strs = "esfewf";
string a=strs.Insert(2, "111");
Console.WriteLine(a);
判断字符串内有没有指定的字符串
string str = "rdgergr";
Console.WriteLine(str.Contains("rd"));
判断是不是指定的字符串在结尾的位置上
string str = "f3g3g";
Console.WriteLine(str.EndsWith("3g"));
判断字符串内是不是指定的字串在起始的位置上
string str = "rgvrgvregv";
Console.WriteLine(str.StartsWith("1rg"));
替换指定的字符
string str = "fwegfewgfv";
Console.WriteLine(str.Replace('f', 'w'));
把字符串转换成char数组
string str = "huinuefnie";
char[] lines=str.ToCharArray();
遍历输出
foreach (char line in lines)
{
Console.WriteLine(line);
}
指定索引位置,指定长度取字串
string str = "sdgergver";
string s=str.Substring(3,5);
Console.WriteLine(s);
补充:软件开发 , C# ,