Lines Matching defs:substring

679      * Removes the characters in a substring of this sequence.
680 * The substring begins at the specified {@code start} and extends to
769 * Replaces the characters in a substring of this sequence
770 * with characters in the specified <code>String</code>. The substring
774 * characters in the substring are removed and then the specified
810 * substring begins at the specified index and extends to the end of
818 public String substring(int start) {
819 return substring(start, count);
833 * sb.substring(begin,&nbsp;end)</pre></blockquote>
849 return substring(start, end);
855 * substring begins at the specified <code>start</code> and
866 public String substring(int start, int end) {
1252 * specified substring. The integer returned is the smallest value
1260 * @return if the string argument occurs as a substring within this
1262 * such substring is returned; if it does not occur as a
1263 * substring, <code>-1</code> is returned.
1273 * specified substring, starting at the specified index. The integer
1281 * @param str the substring for which to search.
1284 * specified substring, starting at the specified index.
1295 * of the specified substring. The rightmost empty string "" is
1303 * @param str the substring to search for.
1304 * @return if the string argument occurs one or more times as a substring
1306 * the last such substring is returned. If it does not occur as
1307 * a substring, <code>-1</code> is returned.
1317 * specified substring. The integer returned is the largest value <i>k</i>
1325 * @param str the substring to search for.
1328 * specified substring.