我在vb.net中有以下代码用于验证字母数字字符,它适用于所有字母数字字符,但我想允许用户,以便他可以插入“*”。请为我提供上述问题的新正则表达式。
<tr>
<td>
<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>
<asp:RegularExpressionValidator ID="revSearchCourse" runat="server" Display="Dynamic"
ControlToValidate="txtSearchCourse" ValidationExpression="^[0-9a-zA-Z]+$" ErrorMessage="The Course Name Should be Only Alphanumeric characters"></asp:RegularExpressionValidator>
</td>
</tr>
答案 0 :(得分:2)
只需在字符类中添加*字符,如下所示:^[0-9a-zA-Z*]+$