StringSegmentSplit(Char) Method
Namespace: KGySoft.CoreLibrariesAssembly: KGySoft.CoreLibraries (in KGySoft.CoreLibraries.dll) Version: 10.0.0
public IList<StringSegment> Split(
params char[]? separators
)
Public Function Split (
ParamArray separators As Char()
) As IList(Of StringSegment)
public:
IList<StringSegment>^ Split(
... array<wchar_t>^ separators
)
member Split :
separators : char[] -> IList<StringSegment>
- separators Char
- An array of characters that delimits the segments in this StringSegment. If or contains no elements,
then the split operation will use whitespace separators.
IListStringSegmentA list of
StringSegment instances, whose elements contain the substrings in this
StringSegment that are
delimited by
separators.