码迷,mamicode.com
首页 > 编程语言 > 详细

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

时间:2018-03-24 12:47:16      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:bsp   static   函数   图片   ntc   str   分享   inf   指定   

 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_获取指定范围文本代码点

标签:bsp   static   函数   图片   ntc   str   分享   inf   指定   

原文地址:https://www.cnblogs.com/alimjan/p/8638357.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!