java_函数手册_String_1.2_codePointCount_获取指定范围文本代码点

Posted alm

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java_函数手册_String_1.2_codePointCount_获取指定范围文本代码点相关的知识,希望对你有一定的参考价值。

 1 package calssString;
 2 
 3 public class codePointCount___1_4 {
 4     public static void main(String[] args) {
 5         String strCom = "I LIKE JAVA";
 6         int strLower = strCom.codePointCount(2,9);
 7         System.out.println(strLower);
 8 
 9         strCom = "I LIKE J爱VA";
10         strLower = strCom.codePointCount(2,9);
11         System.out.println(strLower);
12 
13         strCom = "I LIKE J1VA";
14         strLower = strCom.codePointCount(2,9);
15         System.out.println(strLower);
16     }
17 }

 

以上是关于java_函数手册_String_1.2_codePointCount_获取指定范围文本代码点的主要内容,如果未能解决你的问题,请参考以下文章

java_函数手册_String_1.7_concat_字符串结尾连接

java_函数手册_String_1.5_compareToIgnoreCase_忽略大小写比较两个字符串

Java代码规范_插件_阿里java开发手册

使用不匹配的选项“-arch=compute_20 -code=sm_20”为 GeForce 310(计算能力 1.2)编译 CUDA 程序

参考手册目录__第二部分

Java_类的定义_主函数的定义_定义规则