跳到主要内容

📖C#语言 参考手册

📖C#语言 参考手册

C# 字符串方法

  1. C# String Format() 字符串格式化方法 Returns a formatted string
  2. C# String Split() 字符串分割方法 Returns substrings of a string
  3. C# String Substring() 字符串子串方法 Returns a substring from the given string
  4. C# String Compare() 字符串比较方法 Compares two strings in the alphabetical order
  5. C# String Replace() 字符串替换方法 Replace all matching characters/text in the string
  6. C# String Contains() 字符串包含检查方法 Checks whether the string contains a substring
  7. C# String Join() 字符串连接方法 Joins the given strings using a separator
  8. C# String Trim() 字符串修剪方法 Removes any leading and trailing whitespaces
  9. C# String EndsWith() 字符串结尾检查方法 Checks if the string ends with the given string
  10. C# String IndexOf() 字符串索引查找方法 Returns the index of the string
  11. C# String Concat() 字符串拼接方法 Concatenates (joins) strings
  12. C# String Equals() 字符串相等判断方法 Checks whether two strings have the same value
  13. C# String Remove() 字符串移除方法 Removes a specified number of characters
  14. C# String ToUpper() 字符串转大写方法 Converts characters in the string to uppercase
  15. C# String ToLower() 字符串转小写方法 Converts all characters in the string to lowercase
  16. C# String PadLeft() 字符串左填充方法 Returns a new string with left padding
  17. C# String PadRight() 字符串右填充方法 Returns new string with right padding
  18. C# String StartsWith() 字符串开头检查方法 Checks if string starts with the specified string
  19. C# String ToCharArray() 字符串转字符数组方法 Copies characters in string to a character array
  20. C# String LastIndexOf() 字符串最后索引查找方法 Returns index of the last occurrence of substring