1 instantiation of ValueMatch
System.Text.RegularExpressions (1)
System\Text\RegularExpressions\Regex.EnumerateMatches.cs (1)
155
_current = new
ValueMatch
(match.Index, match.Length);
13 references to ValueMatch
ConfigurationSchemaGenerator (1)
ConfigSchemaEmitter.cs (1)
518
foreach (
var
match in BlankLinesInDocComment().EnumerateMatches(value))
Microsoft.ML.Tokenizers (2)
PreTokenizer\PreTokenizer.cs (2)
160
foreach (
ValueMatch
m in regex.EnumerateMatches(text.AsSpan(beginning, length)))
180
foreach (
ValueMatch
m in regex.EnumerateMatches(text.Slice(beginning, length)))
System.ComponentModel.Annotations (1)
System\ComponentModel\DataAnnotations\RegularExpressionAttribute.cs (1)
69
foreach (
ValueMatch
m in Regex!.EnumerateMatches(stringValue))
System.Text.RegularExpressions (9)
System\Text\RegularExpressions\Regex.EnumerateMatches.cs (6)
105
/// over zero or more <see cref="
ValueMatch
"/> objects. If there is at least one successful match in the
107
/// the first <see cref="
ValueMatch
"/>. If there are no successful matches, then <see cref="MoveNext"/>
115
public ref struct ValueMatchEnumerator : IEnumerator<
ValueMatch
>
119
private
ValueMatch
_current;
165
/// Gets the <see cref="
ValueMatch
"/> element at the current position of the enumerator.
168
public readonly
ValueMatch
Current => _current;
System\Text\RegularExpressions\ValueMatch.cs (3)
8
/// The <see cref="
ValueMatch
"/> type is immutable and has no public constructor. An instance of the
9
/// <see cref="
ValueMatch
"/> struct is returned by the
19
/// Creates an instance of the <see cref="
ValueMatch
"/> type based on the passed in