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.
我可以使用什么正则表达式来匹配以下内容
<=, >=, ==, !=
在“var1 <= var2”中
我尝试使用 (?<=(<(?==))) 但不起作用
试试这个表达式:
([<>!=]=)
您可以使用此正则表达式:
[<>=!]=
简单有什么问题(<=|>=|==|!=)?
(<=|>=|==|!=)
您需要使用 or 比较: