RegularExpression
v1.0
B G I M N R S T U

B

beginningMatches(String) - Method in class RegularExpression.RE
Returns a boolean value specifying whether the beginning of the specified string matches the regular expression or not.
beginningMatchesWithLength(String) - Method in class RegularExpression.RE
Returns a boolean value specifying whether the beginning of the specified string matches the regular expression or not.

G

getAutomaton() - Method in class RegularExpression.RE
Returns the regular expression automaton.

I

indexOf(String, int) - Method in class RegularExpression.RE
Returns the index of the first instance of the regular expression after the offset.

M

main(String[]) - Static method in class RegularExpression.UnitTest
 
matches(String) - Method in class RegularExpression.RE
Returns a boolean value specifying whether the specified string matches the regular expression or not.
matchesWithFailPoint(String) - Method in class RegularExpression.RE
Returns a boolean value specifying whether the specified string matches the regular expression or not and if the string does not match it returns the position at which the string first failed.

N

nextTokenAndDelim(String, int) - Method in class RegularExpression.RE
Returns the next token and delimiter in a specified string from the specified offset.

R

RE - class RegularExpression.RE.
The RE class handles standard PERL-type regular expression operations.

RE() - Constructor for class RegularExpression.RE
Empty constructor.
RE(String, boolean) - Constructor for class RegularExpression.RE
Contructs a regular expression handler with the specified regular expression (as a string) and a boolean denoting case-sensitivity for operations.
RegularExpression - package RegularExpression
 
replace(String, String) - Method in class RegularExpression.RE
Replaces all matching substrings in a specified string with a specified replacement string.

S

split(String) - Method in class RegularExpression.RE
Splits the specified string into an array of tokens.

T

toString() - Method in class RegularExpression.RE
Returns a string formatted to look like a regular expression.

U

UnitTest - class RegularExpression.UnitTest.
 
UnitTest() - Constructor for class RegularExpression.UnitTest
 

B G I M N R S T U
RegularExpression
v1.0