Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的情况是,在我的 asp.net 页面中,TextBox 不应包含以下值 .Edit .Delete .ReadOnly
那么如何使用正则表达式来验证呢?
或者您可以使用单个正则表达式验证器并编写
^\b((?!(Edit|Delete|ReadOnly)).)*$
让我知道这是否有帮助
使用自定义验证器并检查其中的每一个。
在三个正则表达式验证器中试试这个
^((?!Edit).)*$ ^((?!Delete).)*$ ^((?!Readonly).)*$
当然,您可以根据需要定制正则表达式。