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.
我想将所有不包含这些字符“<”、“>”、“=”的字符串与 QRegExp (Qt) 匹配。使用以下正则表达式,这不起作用:
"^[^><=]+$"
为什么?对我来说这意味着:字符串的开头,一个或多个不是>,<,=的字符和字符串的结尾
谢谢
编辑
我想匹配
BUILD
例如,我不想匹配
BU<ILD
尝试另一种方法。采用:
^(?!.*[<>=]).*$