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
Arbeiten Sie mit uns auf GitHub zusammen
Die Quelle für diesen Inhalt finden Sie auf GitHub, wo Sie auch Issues und Pull Requests erstellen und überprüfen können. Weitere Informationen finden Sie in unserem Leitfaden für Mitwirkende.