//用于转化值的格式化方法 DateTime waiting = new DateTime(2012, 10, 10, 17, 58, 1); string chat = String.Format("Message sent at {0:t} on {0:D}", waiting); Console.WriteLine("Message: {0}", chat); Console.ReadKey() ; } } }
输出:
Full Name: RowanAtkinson
Greetings: Hello
Message: Hello From Tutorials Point
Message: Message sent at 下午5:58 on 2012年10月10日 星期三
String 类有以下两个属性
Chars
在当前 String 对象中获取 Char 对象的指定位置。
Length
在当前的 String 对象中获取字符数。
String 类的方法
String 类有许多方法用于 string 对象的操作。下面的表格提供了一些最常用的方法:
字符串包含字符串:
1 2 3 4 5
string str = "This is test"; if (str.Contains("test")) { Console.WriteLine("The sequence 'test' was found."); }
获取子字符串:
1
string substr = str.Substring(23);
连接字符串:
1 2 3 4 5 6 7 8
string[] starray = newstring[]{"Down the way nights are dark", "And the sun shines daily on the mountain top", "I took a trip on a sailing ship", "And when I reached Jamaica", "I made a stop"};