Lines Matching refs:matches
1251 * exactly matches the specified subregion of the string argument;
1319 * matches the specified subregion of the string argument;
1820 /* Empty string always matches. */
2037 * Tells whether or not this string matches the given <a
2041 * <i>str</i><tt>.matches(</tt><i>regex</i><tt>)</tt> yields exactly the
2045 * java.util.regex.Pattern#matches(String,CharSequence)
2046 * matches}(</tt><i>regex</i><tt>,</tt> <i>str</i><tt>)</tt></blockquote>
2051 * @return <tt>true</tt> if, and only if, this string matches the
2062 public boolean matches(String regex) {
2063 return Pattern.matches(regex, this);
2080 * Replaces the first substring of this string that matches the given <a
2123 * Replaces each substring of this string that matches the given <a
2166 * Replaces each substring of this string that matches the literal target
2185 * Splits this string around matches of the given
2189 * string that is terminated by another substring that matches the given
2254 * around matches of the given regular expression
2317 * Splits this string around matches of the given <a
2344 * around matches of the given regular expression