List of utility methods to do String Extract
String | regexExtract(String string, String pattern) Extracts regex match from string if (string == null || pattern == null) { return null; Matcher m = regexGetMatcherForPattern(string, pattern); if (m == null) { return null; if (m.find()) { ... |