Click or drag to resize
StringExtensions Methods

The StringExtensions type exposes the following members.

Methods
  Name Description
Public method Static member CapitaliseFirstLetter
Capitalises the first letter of the provided string, if there are multiple words in the string only the first will be capitalised Use this instead of ToTileCase if you wish to preserve camelCase formatting
Public method Static member Contains(IEnumerableString, String, StringComparison)
Determines whether the provided list of strings contains the specified string using the provided StringComparison object.
Public method Static member Contains(String, String, StringComparison)
Checks if a string contains the specified value according to the provided comparison rules
Public method Static member IsNullOrEmpty
Indicates whether the spesified string is null or Empty. Wraps System.String.IsNullOrEmpty
Public method Static member IsNullOrWhiteSpace
Indicates whether the spesified string is null or Empty or only whitespace. Wraps System.String.IsNullOrWhiteSpace
Public method Static member PascalToSpacedString
Takes in a Pascal Case string and spaces between the words
Public method Static member PascalToSpacedStringArray
Takes in a Pascal Case string and splits it into an array of the words
Public method Static member RemoveAllWhitespace
Takes in a string and removes all whitespace in that string, regardless of its position. See http://stackoverflow.com/questions/6219454/efficient-way-to-remove-all-whitespace-from-string
Public method Static member ReplaceIgnoreCase
Replaces all the values in a string, regardless of their case with the new value
Top
See Also