StringBuilder offsetByCodePoints() method in Java with Examples Last Updated : 20 Oct, 2018 Comments Improve Suggest changes Like Article Like Report The offsetByCodePoints() method of StringBuilder class returns the index within this String contained by StringBuilder that is offset from the index passed as parameter by codePointOffset code points. Unpaired surrogates lies between index and codePointOffset count as one code point each. Syntax: public int offsetByCodePoints(int index, int codePointOffset) Parameters: This method takes two parameters: index: the index to be offset codePointOffset: the offset in code points Return Value: This method returns the index within this sequence. Exception: This method throws IndexOutOfBoundsException if any one below is true: index < 0 or index > length of the sequence. codePointOffset > 0 and the subsequence starting with index has fewer than codePointOffset code points codePointOffset < and the subsequence before index has fewer than the absolute value of codePointOffset code points. Below programs demonstrate the offsetByCodePoints() method of StringBuilder Class: Example 1: Java // Java program to demonstrate // the offsetByCodePoints() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder("WelcomeGeeks"); // print string System.out.println("String = " + str.toString()); // returns the index within this sequence int returnvalue = str.offsetByCodePoints(1, 4); // prints the index System.out.println("Index = " + returnvalue); } } Output: String = WelcomeGeeks Index = 5 Example 2: Java // Java program to demonstrate // the offsetByCodePoints() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder("India Is great"); // print string System.out.println("String = " + str.toString()); // returns the index within this sequence int returnvalue = str.offsetByCodePoints(2, 9); // prints the index System.out.println("Index = " + returnvalue); } } Output: String = India Is great Index = 11 Example 3: To demonstrate IndexOutOfBoundException Java // Java program to demonstrate // Exception thrown by offsetByCodePoints() Method. class GFG { public static void main(String[] args) { // create a StringBuilder object // with a String pass as parameter StringBuilder str = new StringBuilder("India"); try { // returns the index within this sequence int returnvalue = str.offsetByCodePoints(2, 9); // prints the index System.out.println("Index = " + returnvalue); } catch (IndexOutOfBoundsException e) { System.out.println("Exception: " + e); } } } Output: Exception: java.lang.IndexOutOfBoundsException Reference: https://docs.oracle.com/javase/10/docs/api/java/lang/StringBuilder.html#offsetByCodePoints(int, int) Comment More infoAdvertise with us Next Article StringBuilder offsetByCodePoints() method in Java with Examples A AmanSingh2210 Follow Improve Article Tags : Java java-basics Java-Functions Java-StringBuilder Practice Tags : Java Similar Reads StringBuffer offsetByCodePoints() method in Java with Examples The offsetByCodePoints() method of StringBuffer class returns the index within this String contained by StringBuffer that is offset from the index passed as parameter by codePointOffset code points. Unpaired surrogates lies between index and codePointOffset count as one code point each. Syntax: publ 2 min read StringBuffer setCharAt() method in Java with Examples The setCharAt() method of StringBuffer class sets the character at the position index to character which is the value passed as parameter to method. This method returns a new sequence which is identical to old sequence only difference is a new character ch is present at position index in new sequenc 2 min read StringBuilder setLength() in Java with Examples The setLength(int newLength) method of StringBuilder is used to set the length of the character sequence equal to newLength.For every index k greater than 0 and less than newLength. If the newLength passed as argument is less than the old length, the old length is changed to the newLength.If the new 2 min read OffsetTime toString() method in Java with examples The toString() method of OffsetTime class in Java outputs this date as a String, such as "11:25:10+11:10" for an example. Syntax : public String toString() Parameter: This method does not accepts any parameter. Return Value: It returns a string representation of this date, not null. Below programs i 1 min read StringBuilder length() in Java with Examples The length() method of StringBuilder class returns the number of character the StringBuilder object contains. The length of the sequence of characters currently represented by this StringBuilder object is returned by this method. Syntax: public int length() Return Value: This method returns length o 2 min read StringBuilder replace() in Java with Examples The replace(int start, int end, String str) method of StringBuilder class is used to replace the characters in a substring of this sequence with characters in the specified String. The substring begins at the specified index start and extends to the character at index end - 1 or to the end of the se 3 min read StringBuilder toString() method in Java with Examples The toString() method of the StringBuilder class is the inbuilt method used to return a string representing the data contained by StringBuilder Object. A new String object is created and initialized to get the character sequence from this StringBuilder object and then String is returned by toString( 3 min read StringBuilder reverse() in Java with Examples The reverse() method of StringBuilder is used to reverse the characters in the StringBuilder. The method helps to this character sequence to be replaced by the reverse of the sequence. Syntax: public java.lang.AbstractStringBuilder reverse() Returns: This method returns StringBuilder object after re 1 min read ParsePosition toString() method in Java with Example The toString() method of java.text.ParsePosition class is used to retrieve the parse position object represented in the form of string.Syntax: public String toString() Parameter: This method does not accepts any argument as parameter.Return Value: This method returns the parse position object repres 2 min read ParsePosition setIndex() method in Java with Example The setIndex() method of java.text.ParsePosition class is used to set the current parse position of this ParsePositon object . Syntax: public void setIndex(int index) Parameter: This method takes integer index at which current parse position is going to be set. Return Value: This method has nothing 2 min read Like