|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Matcher | |
---|---|
jregex | |
org.jruby |
Uses of Matcher in jregex |
---|
Methods in jregex that return Matcher | |
---|---|
Matcher |
Pattern.matcher()
Returns a targetless matcher. |
Matcher |
Pattern.matcher(char[] data,
int start,
int end)
Returns a matcher for a specified region. |
Matcher |
Pattern.matcher(MatchResult res,
int groupId)
Returns a matcher for a match result (in a performance-friendly way). |
Matcher |
Pattern.matcher(MatchResult res,
java.lang.String groupName)
Just as above, yet with symbolic group name. |
Matcher |
Pattern.matcher(java.io.Reader text,
int length)
Returns a matcher taking a text stream as target. |
Matcher |
Pattern.matcher(java.lang.String s)
Returns a matcher for a specified string. |
Methods in jregex with parameters of type Matcher | |
---|---|
static int |
Replacer.replace(Matcher m,
Substitution substitution,
TextBuffer dest)
Replaces all occurences of a matcher's pattern in a matcher's target by a given substitution appending the result to a buffer. The substitution starts from current matcher's position, current match not included. |
static int |
Replacer.replace(Matcher m,
Substitution substitution,
java.io.Writer out)
|
void |
Matcher.setTarget(Matcher m,
int groupId)
This method allows to efficiently pass data between matchers. |
Constructors in jregex with parameters of type Matcher | |
---|---|
RETokenizer(Matcher m,
boolean emptyEnabled)
|
Uses of Matcher in org.jruby |
---|
Fields in org.jruby declared as Matcher | |
---|---|
protected Matcher |
RubyMatchData.matcher
|
Constructors in org.jruby with parameters of type Matcher | |
---|---|
RubyMatchData.JavaString(Ruby runtime,
java.lang.String original,
Matcher matcher)
|
|
RubyMatchData.RString(Ruby runtime,
RubyString original,
Matcher matcher)
|
|
RubyMatchData(Ruby runtime,
Matcher matcher)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |