Name Description
String.Insert
Inserts a specified string into the current instance
String.PadLeft, String.PadRight
Adds characters to the left and right of the string, respectively
String.Remove
Deletes a specified number of characters from the string, beginning at a specified character
String.Replace
Replaces all occurrences of a specified character in the string with another specified character
String.Split
Returns an array of substrings that are delimited by a specified character
String.Substring
Returns a substring from the specified instance
String.ToCharArray
Returns an array of the characters that make up the string
String.ToLower, String.ToUpper
Returns the string converted to all lowercase or uppercase, respectively
String.TrimEnd, String.TrimStart, String.Trim
Removes trailing, leading, or both characters from the string, respectively