StringSegment.Split(Char[]) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Splits a string into StringSegments that are based on the characters in an array.
public:
Microsoft::Extensions::Primitives::StringTokenizer Split(cli::array <char> ^ chars);
public Microsoft.Extensions.Primitives.StringTokenizer Split (char[] chars);
member this.Split : char[] -> Microsoft.Extensions.Primitives.StringTokenizer
Public Function Split (chars As Char()) As StringTokenizer
Parameters
- chars
- Char[]
A character array that delimits the substrings in this string, an empty array that contains no delimiters, or null.
Returns
An StringTokenizer whose elements contain the StringSegments from this instance
that are delimited by one or more characters in chars
.
Applies to
Samarbejd med os på GitHub
Kilden til dette indhold kan findes på GitHub, hvor du også kan oprette og gennemse problemer og pullanmodninger. Du kan få flere oplysninger i vores vejledning til bidragydere.