java.lang.String.codePointCount()方法範例


java.lang.String.codePointCount() 方法在此字串的指定文字範圍返回Unicode程式碼點數。文字範圍始於指定的beginIndex和一直延伸到字元索引endIndex- 1。因此長度(以字元)的文字範圍是 endIndex-beginIndex.

宣告

以下是java.lang.String.codePointCount()方法的宣告

public int codePointCount(int beginIndex, int endIndex)

引數

  • beginIndex -- 這是該在文字範圍的第一個字元索引。

  • endIndex-- 這是文字範圍的最後一個字元之後的索引。

返回值

這個方法返回指定的文字範圍的Unicode程式碼點數。

異常

  • IndexOutOfBoundsException -- 如果beginIndex是負的,或endIndex比這個字串的長度大,或beginIndex是大於endIndex。

例子

下面的例子顯示java.lang.String.codePointCount()方法的使用。

package com.yiibai;

import java.lang.*;

public class StringDemo {

  public static void main(String[] args) {
  
    String str = "JAVA programming language";
    System.out.println("String = " + str);
        
    // codepoint from index 1 to index 8
    int retval = str.codePointCount(1, 8);
        
    // prints character from index 1 to index 8
    System.out.println("Codepoint count = " + retval);
  }
}

讓我們來編譯和執行上面的程式,這將產生以下結果:

String = JAVA programming language
Codepoint count = 7