码迷,mamicode.com
首页 > 其他好文 > 详细

2014年7月10日

时间:2014-07-16 22:57:15      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   2014   io   for   

字符串讲解  参考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

2014年7月10日,布布扣,bubuko.com

2014年7月10日

标签:style   blog   color   2014   io   for   

原文地址:http://www.cnblogs.com/leong/p/3835375.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!