标签:
类
第一部分
系统内置的处理字符串类型的函数方法类。方便我们对字符串类型进行一系列的处理,
string x=Console.ReadLine();//小string是大Sstring的快捷方式
int i=x.Length;//Length(获取字符串的长度,返回一个int类型的值)
Console.Write(i);
Console.ReadLine();
x.Trim();
DayOfYear 获取日期是当年的第几天,返回int类型值
在控制台输入的格式必须符合DateTime的格式才能正确接收
string s=Console.ReadLine();
DateTime dt=new DateTime();
dt=DateTime.Parse(s);//输入必须符合DateTime的格式,才可以接收
Console.WriteLine(dt);
Console.ReadLine();
s=dt.ToString("yyyy年MM月hh日mm分ss秒");
yyyy MM dd hh mm ss均为代位符
yyyy年,MM月(必须大写),dd日,hh时,mm分(小写),ss(秒)
string s=Console.ReadLine();
DateTime dt=new DateTime();
dt=DateTime.Parse(s);//输入必须符合DateTime的格式,才可以接收
s=dt.ToString("yyyy年MM月hh时mm分ss秒");
Console.WriteLine(s);
标签:
原文地址:http://www.cnblogs.com/sdutlyy/p/5962741.html