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.
我有一个小于符号的正则表达式:
String s="<99"; if(s.matches("[<]*")){ \\code }
不幸的是,这对我不起作用。谁能解释为什么这不起作用?
怎么样
if(s.matches("<.*"))
点将匹配任何字符。所以这是 < 后跟任意数量的任意字符。
对于这个特定的字符串,您可以使用这个正则表达式:-
s.matches(".*?<*.*")
<