MyStringUtil.containsPattern()

public static boolean containsPattern(String text, String regex) {

Pattern p = Pattern.compile(regex);

Matcher m = p.matcher(text);

return m.find();

}

Leave a Comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.