Class StringExtensions
Provides extension methods for String.
Inherited Members
Namespace: EmbedIO.Utilities
Syntax
public static class StringExtensions
Methods
NullIfEmpty(String)
Ensures that a String is never empty, by transforming empty strings into null.
Declaration
public static string NullIfEmpty(this string this)
Parameters
Type | Name | Description |
---|---|---|
String | this | The String on which this method is called. |
Returns
Type | Description |
---|---|
String | If |
SplitByAny(String, Char[])
Splits a string into substrings based on the specified delimiters
.
The returned array includes empty array elements if two or more consecutive delimiters are found
in this
.
Declaration
public static string[] SplitByAny(this string this, params char[] delimiters)
Parameters
Type | Name | Description |
---|---|---|
String | this | The String on which this method is called. |
Char[] | delimiters | An array of Chars to use as delimiters. |
Returns
Type | Description |
---|---|
String[] | An array whose elements contain the substrings in |
SplitByComma(String)
Splits a string into substrings, using the comma (,
) character as a delimiter.
The returned array includes empty array elements if two or more commas are found in this
.
Declaration
public static string[] SplitByComma(this string this)
Parameters
Type | Name | Description |
---|---|---|
String | this | The String on which this method is called. |
Returns
Type | Description |
---|---|
String[] | An array whose elements contain the substrings in |
See Also
SplitByComma(String, StringSplitOptions)
Splits a string into substrings, using the comma (,
) character as a delimiter.
You can specify whether the substrings include empty array elements.
Declaration
public static string[] SplitByComma(this string this, StringSplitOptions options)
Parameters
Type | Name | Description |
---|---|---|
String | this | The String on which this method is called. |
StringSplitOptions | options |
Returns
Type | Description |
---|---|
String[] | An array whose elements contain the substrings in For more information, see the Remarks section of the |
See Also
TrimmedSubstring(String, Int32)
Retrieves a substring from this instance, with leading and trailing white-space characters removed. The substring starts at a specified character position and continues to the end of the string.
Declaration
public static string TrimmedSubstring(this string this, int startIndex)
Parameters
Type | Name | Description |
---|---|---|
String | this | The String on which this method is called. |
Int32 | startIndex | The zero-based starting character position of the substring to retrieve. |
Returns
Type | Description |
---|---|
String | A string that is equivalent to the substring that begins at |
TrimmedSubstring(String, Int32, Int32)
Retrieves a substring from this instance, with leading and trailing white-space characters removed. The substring starts at a specified character position and has a specified length.
Declaration
public static string TrimmedSubstring(this string this, int startIndex, int length)
Parameters
Type | Name | Description |
---|---|---|
String | this | The String on which this method is called. |
Int32 | startIndex | The zero-based starting character position of the substring to retrieve. |
Int32 | length | The length of the substring to retrieve, including leading and/or trailing white-space characters. |
Returns
Type | Description |
---|---|
String | A string that is equivalent to the substring of length |