C# 字符串
C# 字符串
字符串用于存储文本。
A string
变量包含用双引号括起来的字符集合:
如果需要,字符串变量可以包含许多单词:
字符串长度
C# 中的字符串实际上是一个对象,它包含可以对字符串执行某些操作的属性和方法。例如,可以使用 Length
财产:
例子
string txt = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
Console.WriteLine("The length of the txt string is: " + txt.Length);
其他方法
有许多可用的字符串方法,例如 ToUpper()
和ToLower()
,返回转换为大写或小写的字符串的副本:
例子
string txt = "Hello World";
Console.WriteLine(txt.ToUpper()); // Outputs "HELLO WORLD"
Console.WriteLine(txt.ToLower()); // Outputs "hello world"