9 references to Regex
System (9)
regex\system\text\regularexpressions\Regex.cs (9)
209: this(pattern, RegexOptions.None, DefaultMatchTimeout, false) { 224: this(pattern, options, DefaultMatchTimeout, false) { 233: this(pattern, options, matchTimeout, false) { 749return new Regex(pattern, options, matchTimeout, true).IsMatch(input); 823return new Regex(pattern, options, matchTimeout, true).Match(input); 909return new Regex(pattern, options, matchTimeout, true).Matches(input); 983return new Regex(pattern, options, matchTimeout, true).Replace(input, replacement); 1083return new Regex(pattern, options, matchTimeout, true).Replace(input, evaluator); 1171return new Regex(pattern, options, matchTimeout, true).Split(input);