4 references to EnumerateSplits
System.Text.RegularExpressions (4)
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (4)
111EnumerateSplits(input, count: 0); 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. 122/// <see cref="EnumerateSplits(ReadOnlySpan{char}, int)"/> will yield the splits in the order they're found right-to-left.