如何使用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
广告