Java.lang.String.offsetByCodePoints() 方法

描述

java.lang.String.offsetByCodePoints() 方法返回此字符串中的索引,该索引从给定索引偏移 codePointOffset 个代码点。


声明

以下是 java.lang.String.offsetByCodePoints() 方法的声明。

public int offsetByCodePoints(int index, int codePointOffset)

参数

  • index − 这是要偏移的索引。

  • codePointOffset − 这是代码点的偏移量。


返回值

此方法返回此字符串中的索引。


异常

IndexOutOfBoundsException − 如果 index 为负或大于此字符串的长度,或者如果 codePointOffset 为正且以 index 开头的子字符串少于 codePointOffset 代码点,或者如果 codePointOffset 为负且 index 之前的子字符串少于 codePointOffset 代码的绝对值 点。


示例

下面的例子展示了 java.lang.String.offsetByCodePoints() 方法的使用。

package com.tutorialspoint;

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