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.
是否有一个实用程序类或第三个 jar 文件可以让我们轻松使用正则表达式。
我希望它会提供以下方法:
boolean matchString(int length); boolean matchInt(int min,int max); ......
谢谢
自 JDK 1.4 起, Java 通过标准包支持正则表达式java.util.regex,这是您真正应该使用的。
java.util.regex
如果您正在寻找该包的实际 .jar,请查看rt.jar.
rt.jar
至于第三方 .jar 文件,您可以尝试: