|
static String | getValue (String text, String regExp, int group) |
|
- Author
- Lluis TurrĂ³ Cutiller lluis.nosp@m.@tur.nosp@m.ro.or.nosp@m.g
- Deprecated:
- Use Strings instead
Definition at line 29 of file RegExpUtil.java.
◆ getValue()
static String org.turro.elephant.impl.util.RegExpUtil.getValue |
( |
String |
text, |
|
|
String |
regExp, |
|
|
int |
group |
|
) |
| |
|
static |
Definition at line 31 of file RegExpUtil.java.
32 Pattern pat = Pattern.compile(regExp);
33 Matcher mat = pat.matcher(text);
35 return mat.group(group);
The documentation for this class was generated from the following file: