Uses of Class
jetbrains.buildServer.util.regex.MatcherUtil.MatchingException
-
Packages that use MatcherUtil.MatchingException Package Description jetbrains.buildServer.util.regex -
-
Uses of MatcherUtil.MatchingException in jetbrains.buildServer.util.regex
Methods in jetbrains.buildServer.util.regex that throw MatcherUtil.MatchingException Modifier and Type Method Description static String
MatcherUtil. find(String input, String regex)
static String
MatcherUtil. find(String input, String regex, int timeout)
Attempts to find a subsequence of the provided input sequence that matches the provided pattern.static String
MatcherUtil. find(String input, Pattern pattern)
Uses default timeout specified byMatcherUtil.REGEX_MATCHING_TIMEOUT_MS
internal property or default timeout specified byMatcherUtil.DEFAULT_REGEX_MATCHING_TIMEOUT_MS
or falls back to regular matching without timeout in case of negativeMatcherUtil.REGEX_MATCHING_TIMEOUT_MS
internal property valuestatic String
MatcherUtil. find(String input, Pattern pattern, int timeout)
Same as the above method, but accepts compiledPattern
static String
MatcherUtil. find(Matcher matcher)
static boolean
MatcherUtil. matches(String input, String regex, int timeout)
Match the provided input against the provided regular expression.static boolean
MatcherUtil. matches(String input, Pattern pattern, int timeout)
Match the provided input against the provided regular expression.
-