StringExtensions Class |
Namespace: Entelect.Extensions
public static class StringExtensions
The StringExtensions type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | 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
|
![]() ![]() | Contains(IEnumerable<String>, String, StringComparison) |
Determines whether the provided list of strings contains the specified string using the provided StringComparison object.
|
![]() ![]() | Contains(String, String, StringComparison) |
Checks if a string contains the specified value according to the provided comparison rules
|
![]() ![]() | IsNullOrEmpty |
Indicates whether the spesified string is null or Empty.
Wraps System.String.IsNullOrEmpty
|
![]() ![]() | IsNullOrWhiteSpace |
Indicates whether the spesified string is null or Empty or only whitespace.
Wraps System.String.IsNullOrWhiteSpace
|
![]() ![]() | PascalToSpacedString |
Takes in a Pascal Case string and spaces between the words
|
![]() ![]() | PascalToSpacedStringArray |
Takes in a Pascal Case string and splits it into an array of the words
|
![]() ![]() | 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
|
![]() ![]() | ReplaceIgnoreCase |
Replaces all the values in a string, regardless of their case with the new value
|