//定義變數 bool a = false; //正則表達式 string b = @" ^ (13[0 - 9] | 14[5 | 7] | 15[0 | 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9] | 18[0 | 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9]) ...
//定義變數
bool a = false;
//正則表達式
string b = @" ^ (13[0 - 9] | 14[5 | 7] | 15[0 | 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9] | 18[0 | 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9])\d{ 8}
$";
//檢查字元串與正則表達式是否匹配,結果賦值
//Regex需要引用using System.Text.RegularExpressions
//name是要輸入的內容
a = Regex.IsMatch(name, b);
//不匹配
if (a == false)
{
Response.Write("<script>alert('失敗')</script>");
}
//匹配
else
{
Response.Write("<script>alert('成功')</script>");
}