共用方式為


RegularExpressionAttribute(String) 建構函式

定義

初始化 RegularExpressionAttribute 類別的新執行個體。

public:
 RegularExpressionAttribute(System::String ^ pattern);
public RegularExpressionAttribute (string pattern);
new System.ComponentModel.DataAnnotations.RegularExpressionAttribute : string -> System.ComponentModel.DataAnnotations.RegularExpressionAttribute
Public Sub New (pattern As String)

參數

pattern
String

用來驗證資料欄位值的規則運算式。

例外狀況

patternnull

範例

下列範例示範如何將 套用 RegularExpressionAttribute 至數據欄位。 如果驗證失敗,範例中的程式代碼會顯示動態數據所提供的驗證錯誤訊息。

// Allow up to 40 uppercase and lowercase 
// characters. Use standard error.
[RegularExpression(@"^[a-zA-Z''-'\s]{1,40}$")]
public object LastName;
' Allow up to 40 uppercase and lowercase 
' characters. Use standard error.
<RegularExpression("^[a-zA-Z''-'\s]{1,40}$")> _
Public LastName As Object

適用於