欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

cshtml中正则表达式使用后台代码

程序员文章站 2024-01-13 10:08:46
//定义变量 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>");
}