java.lang.Character.toLowerCase(int codePoint)方法實例
java.lang.Character.toLowerCase(int codePoint) 字符(Unicode代碼點)參數使用來自UnicodeData文件的大小寫映射信息轉換成小寫。
需要注意的是Character.isLowerCase(Character.toLowerCase(codePoint)) 在某些範圍內,尤其是那些符號和象形文字並不總是返回true字符。
聲明
以下是java.lang.Character.toLowerCase()方法的聲明
public static int toLowerCase(int codePoint)
參數
-
codePoint - 轉換字符(Unicode代碼點)
返回值
此方法返回字符(Unicode代碼點)等值小寫(如有);否則返回該字符本身。
異常
-
NA
例子
下麵的例子顯示lang.Character.toLowerCase()方法的使用。
package com.yiibai; import java.lang.*; public class CharacterDemo { public static void main(String[] args) { // create 4 int primitives int cp1, cp2, cp3, cp4; // assign values to cp1, cp2 cp1 = 0x0057; cp2 = 0x2153; // assign lowercase of cp1, cp2 to cp3, cp4 cp3 = Character.toLowerCase(cp1); cp4 = Character.toLowerCase(cp2); String str1 = "Lowercase equivalent of cp1 is " + cp3; String str2 = "Lowercase equivalent of cp2 is " + cp4; // print cp3, cp4 values System.out.println( str1 ); System.out.println( str2 ); } }
讓我們來編譯和運行上麵的程序,這將產生以下結果:
Lowercase equivalent of cp1 is 119 Lowercase equivalent of cp2 is 8531