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(".*?<*.*")
<