那麼如何添加,它不應該在這同一行,包括我的其他驗證字母數字REG前空場。正則表達式,只能用字母必填字段
^[A-Za-z0-9 _]*[A-Za-z0-9][A-Za-z0-9 _]*$
我嘗試這樣做,沒有工作
^[A-Za-z0-9 _]*[A-Za-z0-9][A-Za-z0-9 _]*$ | /\S/
這是驗證控件
<asp:RegularExpressionValidator id="userLocationValidation" runat="server"
ControlToValidate="userLocation"
ValidationExpression="/\S/"
ErrorMessage="Only use letters from the english alphabet a-z">
</asp:RegularExpressionValidator>
你的正則表達式將不會匹配一個空字符串。隨意定義「空場」。 – Qtax