1.C# 字符串操作
//字符串操作string domain = "www.test.cn";//获取指定字符串或字符的位置Console.WriteLine(domain.IndexOf('w'));//获取多个字符中任意一个字符的位置Console.WriteLine(domain.IndexOfAny(new char[] { 'w','c'}));//获取指定位置开始,n个数目之内,指定字符或字符串的位置Console.WriteLine(domain.IndexOf('.',0,10));//获取指定相同字符的个数//方法1Console.WriteLine(domain.Where(q => q == '.').Count());//方法2(注:不仅限于字符)Regex reg = new Regex(@"\.",RegexOptions.IgnoreCase);Console.WriteLine(reg.Matches(domain).Count);Regex reg2 = new Regex(@"t", RegexOptions.IgnoreCase);Console.WriteLine(reg2.Matches(domain).Count);