码迷,mamicode.com
首页 > 编程语言 > 详细

二维数组练习

时间:2016-04-05 16:07:04      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:

 

 

 

1.身份证号中截取出生年月日出来

           Console.WriteLine("请输入身份证号:");
            string s = Console.ReadLine();
            string h = s.Substring(6,8);
            Console.WriteLine("出生年月日为:"+h);

2.从目标字符串中截取第二个匹配的字符段出来,要求字符串中至少包含两个以上的字符段

           string s = "abcdefgabcjjiklabcreyit";
            int index1 = s.IndexOf("bc",1);
            int index2 = s.IndexOf("bc",2);
            int index3 = s.IndexOf("bc",3);
            string h=s.Substring((index1+index2-1),index3);
            Console.Write(h);

 

二维数组练习

标签:

原文地址:http://www.cnblogs.com/wenwen123/p/5354930.html

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