ORO, Inc. Logo  All Packages  Class Hierarchy

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

Index of all Fields and Methods

B

begin(int). Method in class com.oroinc.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 com.oroinc.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 com.oroinc.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 com.oroinc.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 com.oroinc.text.perl.Perl5Util
Returns the last match found by a call to a match(), substitute(), or split() method.
group(int). Method in class com.oroinc.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 com.oroinc.text.perl.Perl5Util

L

length(). Method in class com.oroinc.text.perl.Perl5Util
Returns the length of the last match found.

M

MalformedPerl5PatternException(). Constructor for class com.oroinc.text.perl.MalformedPerl5PatternException
Simply calls the corresponding constructor of its superclass.
MalformedPerl5PatternException(String). Constructor for class com.oroinc.text.perl.MalformedPerl5PatternException
Simply calls the corresponding constructor of its superclass.
match(String, char[]). Method in class com.oroinc.text.perl.Perl5Util
Searches for the first pattern match somewhere in a character array taking a pattern specified in Perl5 native format:
 [m]/pattern/[i][m][s][x]
 
The m prefix is optional and the meaning of the optional trailing options are:
i
case insensitive match
m
treat the input as consisting of multiple lines
s
treat the input as consisting of a single line
x
enable extended expression syntax incorporating whitespace and comments
As with Perl, any non-alphanumeric character can be used in lieu of the slashes.
match(String, PatternMatcherInput). Method in class com.oroinc.text.perl.Perl5Util
Searches for the next pattern match somewhere in a com.oroinc.text.regex.PatternMatcherInput instance, taking a pattern specified in Perl5 native format:
 [m]/pattern/[i][m][s][x]
 
The m prefix is optional and the meaning of the optional trailing options are:
i
case insensitive match
m
treat the input as consisting of multiple lines
s
treat the input as consisting of a single line
x
enable extended expression syntax incorporating whitespace and comments
As with Perl, any non-alphanumeric character can be used in lieu of the slashes.
match(String, Perl5StreamInput). Method in class com.oroinc.text.perl.Perl5Util
Searches for the next pattern match somewhere in a com.oroinc.text.regex.Perl5StreamInput instance, taking a pattern specified in Perl5 native format:
 [m]/pattern/[i][m][s][x]
 
The m prefix is optional and the meaning of the optional trailing options are:
i
case insensitive match
m
treat the input as consisting of multiple lines
s
treat the input as consisting of a single line
x
enable extended expression syntax incorporating whitespace and comments
As with Perl, any non-alphanumeric character can be used in lieu of the slashes.
match(String, String). Method in class com.oroinc.text.perl.Perl5Util
Searches for the first pattern match in a String taking a pattern specified in Perl5 native format:
 [m]/pattern/[i][m][s][x]
 
The m prefix is optional and the meaning of the optional trailing options are:
i
case insensitive match
m
treat the input as consisting of multiple lines
s
treat the input as consisting of a single line
x
enable extended expression syntax incorporating whitespace and comments
As with Perl, any non-alphanumeric character can be used in lieu of the slashes.

P

Perl5Util(). Constructor for class com.oroinc.text.perl.Perl5Util
Default constructor for Perl5Util.
Perl5Util(PatternCache). Constructor for class com.oroinc.text.perl.Perl5Util
A secondary constructor for Perl5Util.
postMatch(). Method in class com.oroinc.text.perl.Perl5Util
Returns the part of the input following that last match found.
postMatchCharArray(). Method in class com.oroinc.text.perl.Perl5Util
Returns the part of the input following that last match found as a char array.
preMatch(). Method in class com.oroinc.text.perl.Perl5Util
Returns the part of the input preceding that last match found.
preMatchCharArray(). Method in class com.oroinc.text.perl.Perl5Util
Returns the part of the input preceding that last match found as a char array.

S

split(String). Method in class com.oroinc.text.perl.Perl5Util
Splits input in the default Perl manner, splitting on all whitespace.
split(String, String). Method in class com.oroinc.text.perl.Perl5Util
This method is identical to calling:
 split(pattern, input, SPLIT_ALL);
 
split(String, String, int). Method in class com.oroinc.text.perl.Perl5Util
Splits a String into strings contained in a Vector of size no greater than a specified limit.
SPLIT_ALL. Static variable in class com.oroinc.text.perl.Perl5Util
A constant passed to the split() methods indicating that all occurrences of a pattern should be used to split a string.
substitute(String, String). Method in class com.oroinc.text.perl.Perl5Util
Substitutes a pattern in a given input with a replacement string.

T

toString(). Method in class com.oroinc.text.perl.Perl5Util
Returns the same as group(0).