Java StringBuilder codePointCount()方法

java.lang.StringBuilder.codePointCount() 方法返回在这个序列指定文本范围内的Unicode代码点的数量。

该文本范围始于指定beginIndex延长到索引endIndex- 1处的char值。因此,文本范围的长度(以字符)是 endIndex- beginIndex

1 语法

public int codePointCount(int beginIndex, int endIndex)

2 参数

beginIndex : 这是索引在文本范围的第一个字符。

endIndex : 这是文本范围的最后一个字符之后的索引。

3 返回值

这个方法返回指定文本范围Unicode代码点的数量。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java StringBuilder codePointCount()方法
 */
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

 

热门文章

优秀文章