|
|||||||||
| Home >> All >> org >> apache >> oro >> text >> [ perl overview ] | PREV NEXT | ||||||||
B
- begin(int) - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the begin offset of the subgroup of the last match found relative the beginning of the match.
- beginOffset(int) - Method in class org.apache.oro.text.perl.Perl5Util
- Returns an offset marking the beginning of the last pattern match found relative to the beginning of the input from which the match was extracted.
E
- end(int) - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the end offset of the subgroup of the last match found relative the beginning of the match.
- endOffset(int) - Method in class org.apache.oro.text.perl.Perl5Util
- Returns an offset marking the end of the last pattern match found relative to the beginning of the input from which the match was extracted.
G
- getMatch() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the last match found by a call to a match(), substitute(), or split() method.
- group(int) - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the contents of the parenthesized subgroups of the last match found according to the behavior dictated by the MatchResult interface.
- groups() - Method in class org.apache.oro.text.perl.Perl5Util
L
- length() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the length of the last match found.
M
- MalformedPerl5PatternException - exception org.apache.oro.text.perl.MalformedPerl5PatternException.
- An exception used to indicate errors in Perl style regular expressions.
- MalformedPerl5PatternException() - Constructor for class org.apache.oro.text.perl.MalformedPerl5PatternException
- Simply calls the corresponding constructor of its superclass.
- MalformedPerl5PatternException(String) - Constructor for class org.apache.oro.text.perl.MalformedPerl5PatternException
- Simply calls the corresponding constructor of its superclass.
- match(String, char[]) - Method in class org.apache.oro.text.perl.Perl5Util
- Searches for the first pattern match somewhere in a character array taking a pattern specified in Perl5 native format:
- match(String, String) - Method in class org.apache.oro.text.perl.Perl5Util
- Searches for the first pattern match in a String taking a pattern specified in Perl5 native format:
- match(String, PatternMatcherInput) - Method in class org.apache.oro.text.perl.Perl5Util
- Searches for the next pattern match somewhere in a org.apache.oro.text.regex.PatternMatcherInput instance, taking a pattern specified in Perl5 native format:
O
- org.apache.oro.text.perl - package org.apache.oro.text.perl
- This package used to be the TextTools library and provides general text processing support, including a glob regular expression class, pattern caching and line-by-line processing classes.
P
- ParsedSubstitutionEntry - class org.apache.oro.text.perl.ParsedSubstitutionEntry.
- ParsedSubstitutionEntry(Pattern, Perl5Substitution, int) - Constructor for class org.apache.oro.text.perl.ParsedSubstitutionEntry
- Perl5Util - class org.apache.oro.text.perl.Perl5Util.
- This is a utility class implementing the 3 most common Perl5 operations involving regular expressions: [m]/pattern/[i][m][s][x], s/pattern/replacement/[g][i][m][o][s][x], and split().
- Perl5Util(PatternCache) - Constructor for class org.apache.oro.text.perl.Perl5Util
- A secondary constructor for Perl5Util.
- Perl5Util() - Constructor for class org.apache.oro.text.perl.Perl5Util
- Default constructor for Perl5Util.
- postMatch() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the part of the input following the last match found.
- postMatchCharArray() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the part of the input following the last match found as a char array.
- preMatch() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the part of the input preceding the last match found.
- preMatchCharArray() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the part of the input preceding the last match found as a char array.
S
- SPLIT_ALL - Static variable in class org.apache.oro.text.perl.Perl5Util
- A constant passed to the split() 55 methods indicating that all occurrences of a pattern should be used to split a string.
- split(Collection, String, String, int) - Method in class org.apache.oro.text.perl.Perl5Util
- Splits a String into strings that are appended to a List, but no more than a specified limit.
- split(Collection, String, String) - Method in class org.apache.oro.text.perl.Perl5Util
- This method is identical to calling:
- split(Collection, String) - Method in class org.apache.oro.text.perl.Perl5Util
- Splits input in the default Perl manner, splitting on all whitespace.
- split(String, String, int) - Method in class org.apache.oro.text.perl.Perl5Util
- Deprecated. Use
split(Collection results, String pattern, String input, int limit)55 instead. - split(String, String) - Method in class org.apache.oro.text.perl.Perl5Util
- Deprecated. Use
split(Collection results, String pattern, String input)55 instead. - split(String) - Method in class org.apache.oro.text.perl.Perl5Util
- Deprecated. Use
split(Collection results, String input)55 instead. - substitute(StringBuffer, String, String) - Method in class org.apache.oro.text.perl.Perl5Util
- Substitutes a pattern in a given input with a replacement string.
- substitute(String, String) - Method in class org.apache.oro.text.perl.Perl5Util
- Substitutes a pattern in a given input with a replacement string.
T
- toString() - Method in class org.apache.oro.text.perl.Perl5Util
- Returns the same as group(0).
_
- __compilePatterns() - Method in class org.apache.oro.text.perl.Perl5Util
- Compiles the patterns (currently only the match expression) used to parse Perl5 expressions.
- __expressionCache - Variable in class org.apache.oro.text.perl.Perl5Util
- The hashtable to cache higher-level expressions
- __inputBeginOffset - Variable in class org.apache.oro.text.perl.Perl5Util
- Keeps track of the begin and end offsets of the original input for the postMatch() and preMatch() methods.
- __inputEndOffset - Variable in class org.apache.oro.text.perl.Perl5Util
- Keeps track of the begin and end offsets of the original input for the postMatch() and preMatch() methods.
- __lastMatch - Variable in class org.apache.oro.text.perl.Perl5Util
- The last match from a successful call to a matching method.
- __matchExpression - Static variable in class org.apache.oro.text.perl.Perl5Util
- The regular expression to use to parse match expression.
- __matchPattern - Variable in class org.apache.oro.text.perl.Perl5Util
- The compiled match expression parsing regular expression.
- __matcher - Variable in class org.apache.oro.text.perl.Perl5Util
- The pattern matcher to perform matching operations.
- __nullString - Static variable in class org.apache.oro.text.perl.Perl5Util
- Used for default return value of post and pre Match()
- __originalInput - Variable in class org.apache.oro.text.perl.Perl5Util
- Keeps track of the original input (for postMatch() and preMatch()) methods.
- __parseMatchExpression(String) - Method in class org.apache.oro.text.perl.Perl5Util
- Parses a match expression and returns a compiled pattern.
- __patternCache - Variable in class org.apache.oro.text.perl.Perl5Util
- The pattern cache to compile and store patterns
- __splitList - Variable in class org.apache.oro.text.perl.Perl5Util
- A container for temporarily holding the results of a split before deleting trailing empty fields.
- _numSubstitutions - Variable in class org.apache.oro.text.perl.ParsedSubstitutionEntry
- _pattern - Variable in class org.apache.oro.text.perl.ParsedSubstitutionEntry
- _substitution - Variable in class org.apache.oro.text.perl.ParsedSubstitutionEntry
B E G L M O P S T _
|
|||||||||
| Home >> All >> org >> apache >> oro >> text >> [ perl overview ] | PREV NEXT | ||||||||