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);