本文介绍了使用单词,空格和点的正则表达式可以帮助我吗的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<asp:RegularExpressionValidator ID="RegularExpressionValidator2" runat="server"
ControlToValidate="txt_pname" Display="Dynamic"
ErrorMessage="use proper name" ForeColor="red"
SetFocusOnError="True"
ValidationExpression="[A-Za-z .]+!"$%&’()*\+,\/;\[\\\]\^_`{|}~"></asp:RegularExpressionValidator>
此代码不起作用
this code is not work
推荐答案
此代码不起作用
this code is not work
[a-zA-Z\s\.]+
这将匹配一个或多个(+):
1.字母不区分大小写:a-zA-Z
2.点:\.
3.空格:\ s
This will match one or more (+) of :
1. alphabet non case sensitive: a-zA-Z
2. dot: \.
3. space: \s
^[a-zA-Z\s\.]+
这篇关于使用单词,空格和点的正则表达式可以帮助我吗的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!