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
String.matches(someRegex); Internally uses java.util.regex.Pattern and Matcher
String.matches(someRegex);
java.util.regex.Pattern
Matcher