109 instantiations of Regex
PresentationBuildTasks (1)
PresentationFramework (2)
System (13)
regex\system\text\regularexpressions\Regex.cs (6)
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);
System.Activities (4)
System.Activities.Presentation (1)
System.ComponentModel.DataAnnotations (8)
System.Configuration (1)
System.Data (7)
System.Data.Entity (9)
System.Data.Entity.Design (1)
System.Data.Services (1)
System.Data.Services.Design (1)
System.Data.SqlXml (3)
System.ServiceModel (4)
System.Web (25)
System.Web.DataVisualization (1)
System.Web.DynamicData (1)
System.Web.Extensions (4)
System.Web.Mobile (4)
System.Web.Services (7)
System.Windows.Forms (1)
System.Windows.Forms.DataVisualization (1)
System.Workflow.ComponentModel (2)
System.Xml (7)
243 references to Regex
PresentationBuildTasks (1)
PresentationFramework (3)
System (48)
regex\system\text\regularexpressions\RegexMatch.cs (4)
52internal Regex _regex;
78internal Match(Regex regex, int capcount, String text, int begpos, int len, int startpos)
101internal virtual void Reset(Regex regex, String text, int textbeg, int textend, int textstart) {
428internal MatchSparse(Regex regex, Hashtable caps, int capcount,
regex\system\text\regularexpressions\RegexRunner.cs (6)
80protected internal Regex runregex; // regex object
110protected internal Match Scan(Regex regex, String text, int textbeg, int textend, int textstart, int prevlen, bool quick) {
119Match Scan(Regex regex, String text, int textbeg, int textend, int textstart, int prevlen, bool quick, TimeSpan timeout) {
127Regex.ValidateMatchTimeout(timeout);
129this.ignoreTimeout = (Regex.InfiniteMatchTimeout == timeout);
131? (Int32) Regex.InfiniteMatchTimeout.TotalMilliseconds
System.Activities (4)
System.Activities.Presentation (1)
System.ComponentModel.DataAnnotations (7)
System.Configuration (1)
System.Core (3)
System\Management\Automation\UMPAttributes.cs (3)
125|| !Regex.Match(namespacePart, @"^[a-z,A-Z]").Success // All parts must start with letter
126|| Regex.Match(namespacePart, @"_$").Success // Must not end with an underscore
127|| Regex.Match(namespacePart, @"[^a-z,A-Z,0-9,_,\u0080-\uFFFF]").Success) // Only letters, digits, or underscores
System.Data (7)
System.Data.Entity (9)
System.Data.Entity.Design (2)
System.Data.Linq (1)
System.Data.Services (1)
System.Data.Services.Design (1)
System.Data.SqlXml (3)
System.IdentityModel.Selectors (1)
System.Management (4)
Instrumentation\Attributes.cs (3)
66|| !Regex.Match(namespacePart, @"^[a-z,A-Z]").Success // All parts must start with letter
67|| Regex.Match(namespacePart, @"_$").Success // Must not end with an underscore
68|| Regex.Match(namespacePart, @"[^a-z,A-Z,0-9,_,\u0080-\uFFFF]").Success) // Only letters, digits, or underscores
System.Runtime.Serialization (2)
System.ServiceModel (4)
System.Web (81)
Util\RegexUtil.cs (6)
18return Regex.IsMatch(stringToMatch, pattern, regOption, TimeSpan.FromMilliseconds((double)timeout));
20return Regex.IsMatch(stringToMatch, pattern, regOption);
28return Regex.Match(stringToMatch, pattern, regOption, TimeSpan.FromMilliseconds((double)timeout));
30return Regex.Match(stringToMatch, pattern, regOption);
34public static Regex CreateRegex(string pattern, RegexOptions option, int? timeoutInMillsec) {
46internal static Regex CreateRegex(string pattern, RegexOptions option) {
System.Web.DataVisualization (1)
System.Web.DynamicData (1)
System.Web.Extensions (5)
System.Web.Mobile (21)
System.Web.Services (7)
System.Windows.Forms (1)
System.Windows.Forms.DataVisualization (1)
System.Workflow.ComponentModel (4)
System.Xml (18)