Splits this string into substrings based on the characters in an array. You can specify whether the substrings include empty array elements.
- Parameters
-
separators | A character array that delimits the substrings in this string, an empty array that contains no delimiters. |
options | xtd::string_split_options::remove_empty_entries to omit empty array elements from the array returned; or None to include empty array elements in the array returned. |
- Returns
- An array whose elements contain the substrings in this string that are delimited by one or more characters in separators. For more information, see the Remarks section.