Example usage for java.lang StringBuffer offsetByCodePoints

List of usage examples for java.lang StringBuffer offsetByCodePoints

Introduction

In this page you can find the example usage for java.lang StringBuffer offsetByCodePoints.

Prototype

@Override
public synchronized int offsetByCodePoints(int index, int codePointOffset) 

Source Link

Usage

From source file:Main.java

public static void main(String[] arg) {

    StringBuffer buffer = new StringBuffer("from java2s.com");

    System.out.println(buffer.offsetByCodePoints(1, 2));
}