| java.lang.Object abbot.util.Regexp
Regexp | public class Regexp (Code) | | Simple wrapper around the more fully-featured RE class.
|
Method Summary | |
public static boolean | stringContainsMatch(String regexp, String actual) Return whether there is a match for the given regular expression
within the given string. | public static boolean | stringMatch(String regexp, String actual) Return whether the given regular expression matches the given string
exactly. |
stringContainsMatch | public static boolean stringContainsMatch(String regexp, String actual)(Code) | | Return whether there is a match for the given regular expression
within the given string.
|
stringMatch | public static boolean stringMatch(String regexp, String actual)(Code) | | Return whether the given regular expression matches the given string
exactly.
|
|
|