java.lang.String.offsetByCodePoints()方法实例
java.lang.String.offsetByCodePoints() 方法返回这个字符串,是从给定的索引codePointOffset码点偏移的索引。
声明
以下是java.lang.String.offsetByCodePoints()方法的声明
public int offsetByCodePoints(int index, int codePointOffset)
参数
-
index -- 这是索引被抵消。
-
codePointOffset -- 这是偏移量的代码点。
返回值
此方法返回此字符串的索引。
异常
-
IndexOutOfBoundsException -- 如果指数为负或更大则此字符串的长度,或如果codePointOffset为正和开始索引的子具有比codePointOffset码点较少,或者如果codePointOffset为负和索引之前的子串具有比codePointOffset码的绝对值要小。
例子
下面的例子显示java.lang.String.offsetByCodePoints()方法的使用。
package com.yiibai; import java.lang.*; public class StringDemo { public static void main(String[] args) { String str = "aacdefaa"; System.out.println("string = " + str); // returns the index within this String int retval = str.offsetByCodePoints(2, 4); // prints the index System.out.println("index = " + retval); } }
让我们来编译和运行上面的程序,这将产生以下结果:
string = aacdefaa index = 6