Java toLowerCase() 方法

toLowerCase() 方法将字符串转换为小写。

语法

  1. public String toLowerCase()
  2. public String toLowerCase(Locale locale)

参数

返回值

转换为小写的字符串。

实例

  1. import java.lang.*;
  2. import java.util.*;
  3. public class Test {
  4. public static void main(String args[]) {
  5. String Str = new String("WWW.BAIDU.COM");
  6. // using the default system Locale
  7. Locale locale = Locale.getDefault();
  8. System.out.print("返回值 :" );
  9. System.out.println( Str.toLowerCase() );
  10. System.out.print("返回值 :" );
  11. System.out.println( Str.toLowerCase(locale) );
  12. }
  13. }

以上程序执行结果为:

  1. 返回值 :www.baidu.com
  2. 返回值 :www.baidu.com