48 references to Regex
System (4)
compmod\microsoft\csharp\csharpcodeprovider.cs (2)
526new Regex(@"(^(.*)(\(([0-9]+),([0-9]+)\)): )(error|warning) ([A-Z]+[0-9]+) ?: (.*)"); 528new Regex(@"(error|warning) ([A-Z]+[0-9]+) ?: (.*)");
compmod\microsoft\visualbasic\VBCodeProvider.cs (1)
515outputReg = new Regex(@"^([^(]*)\(?([0-9]*)\)? ?:? ?(error|warning) ([A-Z]+[0-9]+) ?: ((.|\n)*)");
net\System\Net\WebPermission.cs (1)
253s_MatchAllRegex = new Regex(".*");
System.Activities (2)
System\Activities\Expressions\Literal.cs (1)
23static Regex ExpressionEscapeRegex = new Regex(@"^(%*\[)");
System\Activities\XamlIntegration\ActivityWithResultConverter.cs (1)
83static Regex LiteralEscapeRegex = new Regex(@"^(%+\[)");
System.Activities.Presentation (1)
Microsoft.Tools.Common\Microsoft\Activities\Presentation\TypeNameHelper.cs (1)
44Regex regex = new Regex("`[0-9]+");
System.ComponentModel.DataAnnotations (1)
DataAnnotations\RegularExpressionAttribute.cs (1)
110? new Regex(Pattern)
System.Data (1)
cdf\src\NetFx40\Tools\Microsoft.Tools.Common\Microsoft\Activities\Presentation\TypeNameHelper.cs (1)
44Regex regex = new Regex("`[0-9]+");
System.Data.Entity (1)
System\Data\Common\CommandTrees\DbCommandTree.cs (1)
202private static readonly Regex _paramNameRegex = new Regex("^([A-Za-z])([A-Za-z0-9_])*$");
System.Data.SqlXml (3)
System\Xml\Xsl\QIL\QilXmlReader.cs (2)
28private static Regex lineInfoRegex = new Regex(@"\[(\d+),(\d+) -- (\d+),(\d+)\]"); 29private static Regex typeInfoRegex = new Regex(@"(\w+);([\w|\|]+);(\w+)");
System\Xml\Xsl\Xslt\Scripts.cs (1)
339Regex alphaNumeric = new Regex("^[0-9a-zA-Z]+$");
System.ServiceModel (3)
System\ServiceModel\Administration\WbemProvider.cs (3)
775static Regex nsRegEx = new Regex("^(?<namespace>[^\"]*?:)(?<path>.*)"); 776static Regex classRegEx = new Regex("^(?<className>.*?)\\.(?<keys>.*)"); 777static Regex keysRegEx = new Regex("(?<key>.*?)=((?<ival>[\\d]+)|\"(?<sval>.*?)\"),?");
System.Web (19)
Configuration\CapabilitiesPattern.cs (4)
34internal static readonly Regex refPat = new Regex("\\G\\$(?:(?<name>\\d+)|\\{(?<name>\\w+)\\})"); 35internal static readonly Regex varPat = new Regex("\\G\\%\\{(?<name>\\w+)\\}"); 36internal static readonly Regex textPat = new Regex("\\G[^$%\\\\]*(?:\\.[^$%\\\\]*)*"); 37internal static readonly Regex errorPat = new Regex(".{0,8}");
Configuration\CheckPair.cs (2)
29Regex regex = new Regex(match); 36Regex regex = new Regex(match);
Configuration\DelayedRegex.cs (1)
44_regex = new Regex(regstring);
Configuration\HttpCapabilitiesSectionHandler.cs (3)
380static Regex lineRegex = new Regex 393static Regex wsRegex = new Regex("\\G\\s*"); 394static Regex errRegex = new Regex("\\G\\S {0,8}");
Security\ADMembershipProvider.cs (1)
399Regex regex = new Regex( passwordStrengthRegularExpression );
Security\SQLMembershipProvider.cs (1)
138Regex regex = new Regex( _PasswordStrengthRegularExpression );
State\OutOfProcStateClientManager.cs (1)
184private static Regex _ipv6ConnectionStringFormat = new Regex(@"^\[(?<ipv6Address>.*)\]:(?<port>\d*)$");
Util\Wildcard.cs (6)
49protected static Regex metaRegex = new Regex("[\\+\\{\\\\\\[\\|\\(\\)\\.\\^\\$]"); 50protected static Regex questRegex = new Regex("\\?"); 51protected static Regex starRegex = new Regex("\\*"); 52protected static Regex commaRegex = new Regex(","); 53protected static Regex slashRegex = new Regex("(?=/)"); 54protected static Regex backslashRegex = new Regex("(?=[\\\\:])");
System.Web.Extensions (1)
UI\WebControls\QueryableDataSourceHelper.cs (1)
24private static readonly Regex IdentifierRegex = new Regex(IdentifierPattern + @"\s*$");
System.Web.Services (5)
System\Web\Services\Discovery\LinkGrep.cs (5)
153private readonly static Regex tagRegex = new Regex 179private readonly static Regex endtagRegex = new Regex 186private readonly static Regex commentRegex = new Regex 194private readonly static Regex whitespaceRegex = new Regex 200private readonly static Regex textRegex = new Regex
System.Windows.Forms (1)
winforms\Managed\System\WinForms\ToolStripSettings.cs (1)
250Regex r = new Regex("(\\S+)");
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\XomlCompilerParameters.cs (1)
538Regex options = new Regex(@"\s*[/-]rootnamespace[:=]\s*(?<RootNamespace>[^\s]*)");
System.Xml (5)
System\Xml\Serialization\SourceInfo.cs (2)
20static Regex regex = new Regex("([(][(](?<t>[^)]+)[)])?(?<a>[^[]+)[[](?<ia>.+)[]][)]?"); 22static Regex regex2 = new Regex("[(][(](?<cast>[^)]+)[)](?<arg>[^)]+)[)]");
System\Xml\Serialization\XmlSerializationILGen.cs (1)
70regex = new Regex(pattern);
System\Xml\XmlConvert.cs (2)
98c_DecodeCharPattern = new Regex("_[Xx]([0-9a-fA-F]{4}|[0-9a-fA-F]{8})_"); 193c_EncodeCharPattern = new Regex("(?<=_)[Xx]([0-9a-fA-F]{4}|[0-9a-fA-F]{8})_");