4 references to EnumerateSplits
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (4)
134EnumerateSplits(input, count, startat: RightToLeft ? input.Length : 0); 141/// The behavior of <see cref="EnumerateSplits(ReadOnlySpan{char}, int, int)"/> is similar to the behavior of <see cref="Split(string, int, int)"/>, producing the splits 143/// <see cref="Split(string, int, int)"/> will include the contents of capture groups in the resulting splits, while <see cref="EnumerateSplits(ReadOnlySpan{char}, int, int)"/> will not. 145/// <see cref="EnumerateSplits(ReadOnlySpan{char}, int, int)"/> will yield the splits in the order they're found right-to-left.