Static Public Member Functions | |
| static List< string > | Tokenize (string text, string delimiter) |
| Splits a string at each occurrence of a separator. | |
| static List< string > | Tokenize (string text) |
| Splits a string at each occurrence of a blank character. | |
| static string | Join (string sep, IEnumerable< string > list) |
| Joins an enumeration of strings and inserts a separator between each adjacent pairs. | |
| static List<string> DotNX::Core::Strings::Tokenize | ( | string | text, | |
| string | delimiter | |||
| ) | [static] |
Splits a string at each occurrence of a separator.
| text | The string to be split. | |
| delimiter | The separator. |
| static List<string> DotNX::Core::Strings::Tokenize | ( | string | text | ) | [static] |
Splits a string at each occurrence of a blank character.
| text | The string to be split. |
| static string DotNX::Core::Strings::Join | ( | string | sep, | |
| IEnumerable< string > | list | |||
| ) | [static] |
Joins an enumeration of strings and inserts a separator between each adjacent pairs.
Generalizes the standard string method of the same name by taking any generic enumerable as argument.
| sep | The separator | |
| list | A generic string enumeration. |