身份证号截取出生日期

namespace ConsoleApplication23
{
class Program
{
static void Main(string[] args)
{

string s = "370322199501216715";
Console.WriteLine(s.Length);
string sfz = s.Substring(6,8);
Console.WriteLine(sfz);

Console.ReadLine();

}

}

}

原文地址:https://www.cnblogs.com/weiwenxin01/p/5352849.html