|
| static void | Exchange (ref string first, ref string second) |
| | Exchange texts between each other More...
|
| |
| static string | Select (params string[] list) |
| | Select first non empty string element More...
|
| |
| static string | Surround (string value, string delimiter, string[] special) |
| | Surround text with delimiters if contains delimiter itself or any of special characters. More...
|
| |
| static string | Surround (string value, string delimiter) |
| | Surround text with delimiters if contains delimiter itself or any of special characters More...
|
| |
| static string | Surround (string text, string prefix, string suffix, bool optional) |
| | Surround text with prefix and suffix, optionally adding prefix only when needed. More...
|
| |
| static string | Texture (string pattern, int size) |
| | Repeat string pattern to specified amount of characters length. More...
|
| |
| static string | Trim (string value) |
| | Remove leading and trailing whitespace. Includes space, tabulation (horizontal and vertical), new line and null characters. More...
|
| |
| static bool | IsWild (string text) |
| | Check if string contains one of wild characters ("*" or "?") More...
|
| |
| static bool | IsLike (string text) |
| | Check if string contains one of characters used in LIKE ("%" or "_") More...
|
| |
| static bool | Check (string input, MatchStyle matchStyle, MatchMode matchMode, bool ignoreCase, string[] filters) |
| |
| static bool | CheckAny (string input, MatchMode matchMode, bool ignoreCase, params string[] filters) |
| |
| static bool | CheckAll (string input, MatchMode matchMode, bool ignoreCase, params string[] filters) |
| |
| static bool | CheckNot (string input, MatchMode matchMode, bool ignoreCase, params string[] filters) |
| |
| static bool | CheckOne (string input, MatchMode matchMode, bool ignoreCase, params string[] filters) |
| |
| static bool | Check (string input, MatchMode matchMode, bool ignoreCase, string filter) |
| |
| static bool | CheckRegex (string input, string pattern, RegexOptions options) |
| |
| static bool | CheckRegex (string input, string pattern, bool ignoreCase) |
| |
| static bool | CheckWild (string input, string wild, bool ignoreCase) |
| |
| static bool | CheckSame (string input, string filter, bool ignoreCase) |
| |
| static bool | CheckSimple (string input, string filter, bool ignoreCase) |
| | Check if input string is equal or starts or ends with filter string. More...
|
| |
| static string | Join (string with, params string[] array) |
| | Join non empty strings into one list with separator More...
|
| |
| static string | JoinWith (string with, params string[] array) |
| | Join non empty strings into one list with separator More...
|
| |
| static IEnumerable< string > | Each (string input) |
| |
| static string [] | SplitNewLine (string content) |
| | Split string to array by new line characters. Elements will not include new line itself. More...
|
| |
| static string [] | SplitNewLine (string content, bool removeEmptyEntries) |
| | Split string to array by new line characters. Elements will not include new line itself. More...
|
| |
| static string [] | Split (string input) |
| |
| static string [] | SplitList (string text, string commas, string quotes) |
| | Split string to array by separators with optional quoted elements. May be used to explode from strings like "1,2,3", "abc def xyz", "'Smith''s Home'|'Special | New'|Other value". More...
|
| |
| static string [] | SplitDictionary (string text, string quotes, string equalities, string brackets) |
| | Split string by new line More...
|
| |
| static string | Convert (string value, ConvertAction action) |
| |
| static string [] | Convert (string[] array, ConvertAction action) |
| |
| static bool | Contains (object o, string search) |
| | Check if object as string contains searched string. More...
|
| |
| static char | GetMiddleStringPatternChar (string pattern) |
| | Get middle character from a pattern string. If the length of pattern text is even or empty, function will return an empty character. More...
|
| |
| static string | GetMiddleStringPrefix (string pattern) |
| | Get left part from a pattern string. More...
|
| |
| static string | GetMiddleStringSuffix (string pattern) |
| | Get right part from a pattern string. More...
|
| |
| static string | RemoveWhitespace (string value) |
| | Remove whitespace characters from entire string. More...
|
| |
| static bool | ContainsWhitespace (char[] charArray) |
| | Check if array contains any of whitespace character. More...
|
| |
| static string | Limit (string text, int limit) |
| | Limit string to have maximum count of characters. More...
|
| |
| static string | Limit (string text, int limit, string suffix) |
| | Limit string to have maximum count characters with optional suffix if it was cut off. More...
|
| |
| static string | Limit (string text, int limit, string prefix, string suffix) |
| | Limit string to have maximum count characters with optional prefix or suffix if it was cut off. More...
|
| |
| static string | WildToLike (string text) |
| | Convert text containing wild characters (?, *) to SQL like format (_, %). More...
|
| |
| static string | WildToRegex (string value) |
| | Convert string containing wild characters (*, ?) into Regex pattern. More...
|
| |
| static string | LikeToRegex (string value) |
| | Convert LIKE string into Regex pattern. More...
|
| |
| static string | RemoveEmptyLines (string text) |
| | Remove empty lines from string. More...
|
| |