| Package | Description |
|---|---|
| regexodus |
| Modifier and Type | Method and Description |
|---|---|
static Pattern |
Pattern.compile(String regex)
Compiles the given String into a Pattern that can be used to match text.
|
static Pattern |
Pattern.compile(String regex,
int flags)
Compiles the given String into a Pattern that can be used to match text.
|
static Pattern |
Pattern.compile(String regex,
String flags)
Compiles the given String into a Pattern that can be used to match text.
|
Pattern |
MatchResult.pattern() |
Pattern |
Matcher.pattern() |
| Constructor and Description |
|---|
Matcher(Pattern regex) |
Replacer(Pattern pattern,
String substitution)
Constructs a Replacer from a Pattern and a String to replace occurrences of the Pattern with.
|
Replacer(Pattern pattern,
String substitution,
boolean isPerlExpr) |
Replacer(Pattern pattern,
Substitution substitution)
Unlikely to be used directly.
|
RETokenizer(Pattern pattern,
char[] chars,
int off,
int len) |
RETokenizer(Pattern pattern,
Reader r,
int len) |
RETokenizer(Pattern pattern,
String text) |
Copyright © 2016. All rights reserved.