StringHelpers Class
Namespace | Skybrud.Essentials.Strings |
---|---|
Assembly | Skybrud.Essentials.dll |
Visibility | Public |
Keywords | Static |
Inheritance | Object |
Utility class with various static helper methods for working with strings.
[Obsolete("Use the StringUtils class instead.")]
public static class StringHelpers { }
Methods
CsvToInt(string)
(static)
Converts a comma separated string into an array of integers. |
FirstCharToUpper(string)
(static)
Uppercases the first character of a the specified |
ParseBoolean(string)
(static)
Parses the specified |
ParseBoolean(object)
(static)
Parses the specified |
ToCamelCase(string)
(static)
Converts the specified |
ToCamelCase(Enum)
(static)
Converts the name of the specified enum |
ToPascalCase(string)
(static)
Converts the specified |
ToPascalCase(Enum)
(static)
Converts the name of the specified enum |
ToUnderscore(string)
(static)
Converts the specified |
ToUnderscore(Enum)
(static)
Converts the specified enum value to a lower case string with words separated by underscores. |
UrlDecode(string)
(static)
Decodes a URL string. |
UrlEncode(string)
(static)
Encodes a URL string. |