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

java_函数手册_String_1.2_codePointAt_提取索引字符代码点

时间:2018-03-24 12:42:10      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:提取   ike   col   image   like   指定   技术分享   cal   str   

 1 package calssString;
 2 
 3 public class codePointAt___1_2 {
 4     public static void main(String []args){
 5         /**
 6          * 返回指定索引处的字符代码
 7          */
 8 
 9         String strCom = "I LIKE JAVA";
10         int strLower = strCom.codePointAt(8);
11         System.out.println(strLower);
12 
13         strCom = "I LIKE J爱VA";
14         strLower = strCom.codePointAt(8);
15         System.out.println(strLower);
16 
17         strCom = "I LIKE J1VA";
18         strLower = strCom.codePointAt(8);
19         System.out.println(strLower);
20     }
21 }

技术分享图片

 

java_函数手册_String_1.2_codePointAt_提取索引字符代码点

标签:提取   ike   col   image   like   指定   技术分享   cal   str   

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

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