public interface RegexEngine
Modifier and Type | Method and Description |
---|---|
Regex |
compile(String str)
Compiles a string containing a regular expression into a
Regex object. |
Regex compile(String str) throws RegexSyntaxException
Regex
object.
The Regex
object can be used to test whether a string matches the regular
expression.str
- a String containing a regular expressionRegex
for str
RegexSyntaxException
- if str
is not a valid regular expression