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

大龙谈字符串截取

时间:2014-06-15 08:14:34      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:string   c#   

            string str = "大龙喜欢zzm";
            string s1 = str.Substring(0, 2);
            string s2 = str.Substring(2, 2);
            string s3 = str.Substring(4);

            Console.WriteLine(str[0]);
            Console.WriteLine(s1 + ' ' + s2 + ' ' + s3);
            Console.ReadKey();

bubuko.com,布布扣

注意到从string取其中的char的下标是从零开始,就不难解决了。

大龙谈字符串截取,布布扣,bubuko.com

大龙谈字符串截取

标签:string   c#   

原文地址:http://blog.csdn.net/xyl295528322/article/details/30217953

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