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