Home | History | Annotate | Download | only in objects

Lines Matching defs:substring

153 //      str = str.substring(0, 600);
596 * argument is a prefix of the substring of this object starting
603 * this.subString(toffset).startsWith(prefix)
736 * Returns a new string that is a substring of this string. The
737 * substring begins with the character at the specified index and
741 * "unhappy".substring(2) returns "happy"
742 * "Harbison".substring(3) returns "bison"
743 * "emptiness".substring(9) returns "" (an empty string)
747 * @return the specified substring.
752 public XMLString substring(int beginIndex)
768 * Returns a new string that is a substring of this string. The
769 * substring begins at the specified <code>beginIndex</code> and
771 * Thus the length of the substring is <code>endIndex-beginIndex</code>.
775 * @return the specified substring.
783 public XMLString substring(int beginIndex, int endIndex)