- Java编程示例
- 示例 - 主页
- 示例 - 环境
- 示例 - 字符串
- 示例 - 数组
- 示例 - 日期和时间
- 示例 - 方法
- 示例 - 文件
- 示例 - 目录
- 示例 - 异常
- 示例 - 数据结构
- 示例 - 集合
- 示例 - 网络
- 示例 - 多线程
- 示例 - 小程序
- 示例 - 简单GUI
- 示例 - JDBC
- 示例 - 正则表达式
- 示例 - Apache PDF Box
- 示例 - Apache POI PPT
- 示例 - Apache POI Excel
- 示例 - Apache POI Word
- 示例 - OpenCV
- 示例 - Apache Tika
- 示例 - iText
- Java教程
- Java - 教程
- Java实用资源
- Java - 快速指南
- Java - 实用资源
如何使用Java确定字符串中的Unicode代码点
问题描述
如何确定字符串中的Unicode代码点?
解决方案
本示例展示了如何使用codePointBefore()方法返回指定索引之前的字符(Unicode代码点)。
public class StringUniCode { public static void main(String[] args) { String test_string = "Welcome to TutorialsPoint"; System.out.println("String under test is = "+test_string); System.out.println("Unicode code point at" +" position 5 in the string is = " + test_string.codePointBefore(5)); } }
结果
以上代码示例将产生以下结果。
String under test is = Welcome to TutorialsPoint Unicode code point at position 5 in the string is =111
java_strings.htm
广告