| java.lang.Object org.radeox.regex.Matcher
All known Subclasses: org.radeox.regex.JdkMatcher,
Matcher | abstract public class Matcher (Code) | | |
contains | abstract public boolean contains()(Code) | | Test if a regular expression matches parts of the input
True if the regex matches a part of the input |
create | public static Matcher create(String input, Pattern pattern)(Code) | | Create a new matcher object, depending on the implementation
Parameters: input - Input to match regular expressions agains Parameters: pattern - Regular expression pattern A Matcher implementation |
matches | abstract public boolean matches()(Code) | | Test if a regular expression matches the complete input
True if the regex matches the complete input |
substitute | abstract public String substitute(Substitution substitution)(Code) | | Replace all matches in the input with a substitution. For every match
substition.handleMatch is called.
Parameters: substitution - Code which handles every substitution String with all matches substituted |
substitute | abstract public String substitute(String substitution)(Code) | | Replace all matches in the input with a string substitution.
Parameters: substitution - String to replace all matches String with all matches substituted |
|
|