3 references to Split
System.Text.RegularExpressions (3)
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (3)
118
/// The behavior of <see cref="EnumerateSplits(ReadOnlySpan{char}, int)"/> is similar to the behavior of <see cref="
Split
(string, int)"/>, producing the splits
120
/// <see cref="
Split
(string, int)"/> will include the contents of capture groups in the resulting splits, while <see cref="EnumerateSplits(ReadOnlySpan{char}, int)"/> will not.
121
/// And if <see cref="RegexOptions.RightToLeft"/> is specified, <see cref="
Split
(string, int)"/> will reverse the order of the resulting splits to be left-to-right, whereas