Java Data Type Tutorial - Java StringBuffer .offsetByCodePoints ( int index, int codePointOffset)








Syntax

StringBuffer.offsetByCodePoints(int index, int codePointOffset) has the following syntax.

public int offsetByCodePoints(int index,   int codePointOffset)

Example

In the following code shows how to use StringBuffer.offsetByCodePoints(int index, int codePointOffset) method.

/*w w w  .ja v  a 2  s.  co m*/
public class Main {

  public static void main(String[] arg) {

    StringBuffer buffer = new StringBuffer("from java2s.com");
    
    System.out.println(buffer.offsetByCodePoints(1,2));
  }

}

The code above generates the following result.