18 package org.turro.elephant.impl.util;
20 import java.util.regex.Matcher;
21 import java.util.regex.Pattern;
31 public static String
getValue(String text, String regExp,
int group) {
32 Pattern pat = Pattern.compile(regExp);
33 Matcher mat = pat.matcher(text);
35 return mat.group(group);
static String getValue(String text, String regExp, int group)