C# 字符串


C# 字符串

字符串用于存储文本。

string变量包含用双引号括起来的字符集合:

示例

创建类型变量string并为其赋值:

string greeting = "Hello";

亲自试一试 »

如果需要,字符串变量可以包含许多单词:

示例

string greeting2 = "Nice to meet you!";

亲自试一试 »


字符串长度

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"

亲自试一试 »