字符串的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