6 references to EnumerateSplits
System.Text.RegularExpressions (6)
System\Text\RegularExpressions\Regex.EnumerateSplits.cs (6)
34
RegexCache.GetOrAdd(pattern).
EnumerateSplits
(input);
61
RegexCache.GetOrAdd(pattern, options, s_defaultMatchTimeout).
EnumerateSplits
(input);
89
RegexCache.GetOrAdd(pattern, options, matchTimeout).
EnumerateSplits
(input);
96
/// The behavior of <see cref="
EnumerateSplits
(ReadOnlySpan{char})"/> is similar to the behavior of <see cref="Split(string)"/>, producing the splits
98
/// <see cref="Split(string)"/> will include the contents of capture groups in the resulting splits, while <see cref="
EnumerateSplits
(ReadOnlySpan{char})"/> will not.
100
/// <see cref="
EnumerateSplits
(ReadOnlySpan{char})"/> will yield the splits in the order they're found right-to-left.