RegexStringValidatorAttribute.Regex 属性

定义

获取用于执行正则表达式验证的字符串。

public:
 property System::String ^ Regex { System::String ^ get(); };
public string Regex { get; }
member this.Regex : string
Public ReadOnly Property Regex As String

属性值

包含正则表达式的字符串,其中的正则表达式用于筛选分配给经过修饰的配置元素属性的字符串。

示例

下面的示例演示如何使用 Regex 属性。


ConfigurationValidatorBase valBase;

RegexStringValidatorAttribute rstrValAttr =
new RegexStringValidatorAttribute(@"\w+\S*");

// Get the regular expression string.
string regex = rstrValAttr.Regex;
Console.WriteLine("Regular expression: {0}", regex);
Dim valBase As _
ConfigurationValidatorBase

Dim rstrValAttr As _
New RegexStringValidatorAttribute("\w+\S*")

' Get the regular expression string.
Dim regex As String = _
rstrValAttr.Regex
Console.WriteLine( _
"Regular expression: {0}", regex)

适用于