首页 > 代码库 > 2014年7月10日

2014年7月10日

字符串讲解  参考MSDN

方法

string.ToLower()

string.ToUpper()

string.Equals

属性:

string.length

 

字符串分割:

            string str = "How are you ?Fine,Thank you?";            string[] words = str.Split(‘‘,?,!,,);

分割方法的重载

            string str = "How are you ?Fine,Thank you?";            char[] removeChar={ ,?,!,,};            string[] words = str.Split(removeChar,StringSplitOptions.RemoveEmptyEntries)            Console.WriteLine("上句话共有{0}个单词", words.Length);            for (int i = 0; i < words.Length; i++)            {                Console.WriteLine(words[i]);            }            Console.ReadKey();

 string.replace