位置:首页 > Java技术 > java实例在线教程 > 字符串的Unicode-Java实例

字符串的Unicode-Java实例

如何判断字符串的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