C#字符串
时间: 2023-08-14 12:02:09 浏览: 104
C# 字符串
C# 中的字符串是一种引用类型,表示一组 Unicode 字符。可以使用字符串字面量或字符串构造函数来创建字符串对象。以下是一些常见的字符串操作:
1. 字符串连接:使用加号操作符(+)或字符串插值($"{variable}")。
2. 字符串比较:使用 Equals() 方法或 == 运算符。
3. 字符串查找:使用 IndexOf() 或 LastIndexOf() 方法。
4. 字符串分割:使用 Split() 方法。
5. 字符串替换:使用 Replace() 方法。
6. 字符串大小写转换:使用 ToUpper() 或 ToLower() 方法。
7. 字符串格式化:使用 String.Format() 方法或字符串插值。
以下是一个示例:
```
string str1 = "Hello";
string str2 = "world";
string str3 = str1 + " " + str2; // 字符串连接
Console.WriteLine(str3); // 输出 "Hello world"
bool isEqual = str1.Equals("hello", StringComparison.OrdinalIgnoreCase); // 字符串比较
Console.WriteLine(isEqual); // 输出 True
int index = str3.IndexOf("world"); // 字符串查找
Console.WriteLine(index); // 输出 6
string[] parts = str3.Split(' '); // 字符串分割
Console.WriteLine(parts[0]); // 输出 "Hello"
string replaced = str3.Replace("world", "everyone"); // 字符串替换
Console.WriteLine(replaced); // 输出 "Hello everyone"
string upper = str1.ToUpper(); // 字符串大小写转换
Console.WriteLine(upper); // 输出 "HELLO"
string formatted = String.Format("{0} {1}!", str1, str2); // 字符串格式化
Console.WriteLine(formatted); // 输出 "Hello world!"
```
阅读全文