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.
在java中,你可以通过做文本正则表达式
"mystring".matches("myregex")
但是您可以使用某种正则表达式,它会使matches函数评估为 afalse吗?它需要适用于所有情况(即无论您使用什么字符串进行测试)。
matches
false
谢谢。
我不知道你为什么需要这个,但这应该可以解决问题
"mystring".matches("(?!)")