java.lang.StringBuilder.codePointCount()方法實例
java.lang.StringBuilder.codePointCount() 方法返回在這個序列指定文本範圍內的Unicode代碼點的數量。
該文本範圍始於指定beginIndex延長到索引endIndex- 1處的char值。因此,文本範圍的長度(以字符)是 endIndex- beginIndex
聲明
以下是java.lang.StringBuilder.codePointCount()方法的聲明
public int codePointCount(int beginIndex, int endIndex)
參數
-
beginIndex -- 這是索引在文本範圍的第一個字符。
-
endIndex -- 這是文本範圍的最後一個字符之後的索引。
返回值
這個方法返回指定文本範圍Unicode代碼點的數量。
異常
-
IndexOutOfBoundsException -- 如果beginIndex是負值,或endIndex比這個序列的長度大,或beginIndex大於endIndex。
例子
下麵的例子顯示java.lang.StringBuilder.codePointCount()方法的使用。
package com.yiibai; import java.lang.*; public class StringBuilderDemo { public static void main(String[] args) { StringBuilder str = new StringBuilder("programming"); System.out.println("string = " + str); // returns the codepoint count from index 1 to 5 int retval = str.codePointCount(1, 5); System.out.println("Count = " + retval); str = new StringBuilder("amrood admin "); System.out.println("string = " + str); // returns the codepoint count from index 3 to 9 retval = str.codePointCount(3, 9); System.out.println("Count = " + retval); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
string = programming Count = 4 string = amrood admin Count = 6