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