遍历输出字符串中的每一个字符
string str = "cjfhuiwy73hfy38fh";
for (int i = 0; i < str.Length; i++)
{
Console.WriteLine(str[i]);
}
使用ToLower把字符串转化为小写
string str = "www.BAIDU.com";
string res = str.ToLower();
Console.WriteLine(res);
使用ToUpper把字符串转化为大写
string str = "www.baidu.com";
string res = str.ToUpper();
Console.WriteLine(res);
使用Trim去掉字符串开始和结尾的空格
string str = " www.baidu.com ";
string res = str.Trim();
Console.WriteLine(res);
使用TrimStart去掉字符串前面的空格
string str = " www.baidu.com ";
string res = str.TrimStart();
Console.WriteLine(res);
使用TrimEnd去掉字符串后面的空格
string str = " www.baidu.com ";
string res = str.TrimEnd();
Console.WriteLine(res);
把字符串按照指定字符进行拆分
string str = "www.baidu.com";
string[] strArray = str.Split('.');
foreach (string item in strArray)
{
Console.WriteLine(item);
}