2016 1011随笔

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2016 1011随笔相关的知识,希望对你有一定的参考价值。


第一部分
系统内置的处理字符串类型的函数方法类。方便我们对字符串类型进行一系列的处理,
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);

以上是关于2016 1011随笔的主要内容,如果未能解决你的问题,请参考以下文章

Python随笔9-函数的初级知识

2016.3.22随笔

2016.04 04随笔2

2016-05-24随笔

2016.04 04随笔1

2016/3/11 随笔一