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.
我必须限制用户输入带有任何空格或任何反斜杠的字符串。应允许其余所有字符。我之前尝试过使用下面的正则表达式字符串。
请更正或帮助我使用新的正则表达式来帮助我。我在访问中这样做 - vba
[^0-9a-zA-Z~@#$%^&*()_?<>,.[]{}|-+=]. 我是使用正则表达式的新手。
[^0-9a-zA-Z~@#$%^&*()_?<>,.[]{}|-+=]
问题由此解决。
[\s \\ \/]
这是正则表达式说“从你的行的开头,匹配除''或'/'之外的任何东西一次或多次直到行尾”
/^[^ /]+$/
[^\\ ]*
您通过将 negate 放置在字符类中来使用否定错误,它只接受未列出的字符。您可能还需要 * 在它之后,以便可以重复任意数量的字符。