Java Grep Library

前端 未结 4 2233
南笙
南笙 2020-12-05 23:43

Is there any good, simple Java Grep Library? I\'m not opposed to native code, or scripting, and I\'ll do it, but for my purposes, throughput is not a huge deal, and it would

4条回答
  •  离开以前
    2020-12-06 00:33

    String.matches(someRegex); Internally uses java.util.regex.Pattern and Matcher

提交回复
热议问题