9 references to EnumerateMatches
Aspire.Hosting.Azure (1)
src\Shared\BicepFunction2.cs (1)
40foreach (var match in PlaceholderRegex().EnumerateMatches(span))
Aspire.Hosting.Azure.AppContainers (1)
src\Shared\BicepFunction2.cs (1)
40foreach (var match in PlaceholderRegex().EnumerateMatches(span))
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
69foreach (ValueMatch m in Regex!.EnumerateMatches(stringValue))
System.Private.Xml (1)
System\Xml\XmlConvert.cs (1)
89Regex.ValueMatchEnumerator en = DecodeCharRegex.EnumerateMatches(name.AsSpan(underscorePos));
System.Text.RegularExpressions (5)
System\Text\RegularExpressions\Regex.EnumerateMatches.cs (4)
25RegexCache.GetOrAdd(pattern).EnumerateMatches(input); 44RegexCache.GetOrAdd(pattern, options, s_defaultMatchTimeout).EnumerateMatches(input); 64RegexCache.GetOrAdd(pattern, options, matchTimeout).EnumerateMatches(input); 99/// The enumerator has no public constructor. The <see cref="Regex.EnumerateMatches(ReadOnlySpan{char})"/> method returns a <see cref="Regex.ValueMatchEnumerator"/>
System\Text\RegularExpressions\ValueMatch.cs (1)
11/// <see cref="Regex.ValueMatchEnumerator.Current"/> method when iterating over the results from calling <see cref="Regex.EnumerateMatches(ReadOnlySpan{char})"/>.