例如:
String str="hello";
int n=str.offsetByCodePoints(0,3);
System.out.println(n);
1、定义和用法
返回此 String 中从给定的 index 处偏移 codePointOffset 个代码点的索引。
2、调用语法
int offsetByCodePoints(int index , int codePointOffset)
3、参数说明
参数 | 描述 |
format | 表示要偏移的索引 |
codePointOffset | 表示代码点偏移量 |