Java Character toLowerCase()方法

java.lang.Character.toLowerCase(int codePoint) 字符(Unicode代码点)参数使用来自UnicodeData文件的大小写映射信息转换成小写。

需要注意的是Character.isLowerCase(Character.toLowerCase(codePoint)) 在某些范围内,尤其是那些符号和象形文字并不总是返回true字符。

1 语法

public static int toLowerCase(int codePoint)

2 参数

codePoint:转换字符(Unicode代码点)

3 返回值

此方法返回字符(Unicode代码点)等值小写(如有);否则返回该字符本身。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * Java Character toLowerCase()方法
 */
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

 

热门文章

优秀文章