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