当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java Java.lang.String.offsetByCodePoints()用法及代码示例



描述

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

声明

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

public int offsetByCodePoints(int index, int codePointOffset)

参数

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

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

返回值

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

异常

IndexOutOfBoundsException- 如果 index 为负或大于此 String 的长度,或者如果 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

相关用法


注:本文由纯净天空筛选整理自 Java.lang.String.offsetByCodePoints() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。