![]() |
C# Client Library
A C# Client Library for the AnalyzeRe REST API
|
A high performance string splitter https://github.com/meikeric/String.Split/blob/master/Split.cs. More...
Public Member Functions | |
| StringSplitter (int bufferSize) | |
| Create a new StringSplitter object with the given buffer size. | |
| int | SafeSplit (string value, char separator) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is safe and will automatically adjust the buffer if needed. | |
| int | SafeSplit (string value, char separator, StringSplitOptions options) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is safe and will automatically adjust the buffer if needed. | |
| int | SafeSplit (string value, char[] separators) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer. | |
| int | SafeSplit (string value, char[] separators, StringSplitOptions options) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer. | |
| int | SafeSplit (string value, string separator) |
| Split the string. | |
| int | SafeSplit (string value, string separator, StringSplitOptions options) |
| Split the string. | |
| int | Split (string value, char separator) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer. | |
| int | Split (string value, char separator, StringSplitOptions options) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer. | |
| int | Split (string value, char[] separators) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer. | |
| int | Split (string value, char[] separators, StringSplitOptions options) |
| Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer. | |
| int | Split (string value, string separator) |
| Returns a string array that contains the substrings in this instance that are delimited by a specified string or Unicode character array. | |
| int | Split (string value, string separator, StringSplitOptions options) |
| Returns a string array that contains the substrings in this instance that are delimited by a specified string or Unicode character array. | |
Public Attributes | |
| string[] | buffer |
| The string buffer container. | |
Properties | |
| string[] | Results [get] |
| Get the results of the last split call. | |
A high performance string splitter https://github.com/meikeric/String.Split/blob/master/Split.cs.
Definition at line 9 of file StringSplitter.cs.
|
inline |
Create a new StringSplitter object with the given buffer size.
| bufferSize |
Definition at line 15 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is safe and will automatically adjust the buffer if needed.
| value | |
| separator |
Definition at line 71 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is safe and will automatically adjust the buffer if needed.
| value | |
| separator | |
| options |
Definition at line 344 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer.
| value | |
| separators |
| IndexOutOfRangeException | IndexOutOfRange |
Definition at line 248 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer.
| value | |
| separators | |
| options |
| IndexOutOfRangeException | IndexOutOfRange |
Definition at line 559 of file StringSplitter.cs.
|
inline |
Split the string.
| value | The number of results found |
| separator |
Definition at line 151 of file StringSplitter.cs.
|
inline |
Split the string.
| value | The number of results found |
| separator | |
| options |
Definition at line 443 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer.
| value | |
| separator |
| IndexOutOfRangeException | IndexOutOfRange |
Definition at line 39 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer.
| value | |
| separator |
///
| options |
| IndexOutOfRangeException | IndexOutOfRange |
Definition at line 304 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer.
| value | |
| separators |
| IndexOutOfRangeException | IndexOutOfRange |
Definition at line 205 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by elements of a specified string or Unicode character array. This method is unsafe and can throw IndexOutOfRange exception if we overflow the buffer.
| value | |
| separators | |
| options |
| IndexOutOfRangeException | IndexOutOfRange |
Definition at line 507 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by a specified string or Unicode character array.
| value | |
| separator |
Definition at line 112 of file StringSplitter.cs.
|
inline |
Returns a string array that contains the substrings in this instance that are delimited by a specified string or Unicode character array.
| value | |
| separator | |
| options |
Definition at line 393 of file StringSplitter.cs.
| string [] AnalyzeRe.Utilities.StringSplitter.buffer |
The string buffer container.
Definition at line 23 of file StringSplitter.cs.
|
get |
Get the results of the last split call.
Definition at line 28 of file StringSplitter.cs.