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