Java toLowerCase() 方法
toLowerCase() 方法将字符串转换为小写。
语法
public String toLowerCase()
或
public String toLowerCase(Locale locale)
参数
- 无
返回值
转换为小写的字符串。
实例
import java.lang.*;
import java.util.*;
public class Test {
public static void main(String args[]) {
String Str = new String("WWW.BAIDU.COM");
// using the default system Locale
Locale locale = Locale.getDefault();
System.out.print("返回值 :" );
System.out.println( Str.toLowerCase() );
System.out.print("返回值 :" );
System.out.println( Str.toLowerCase(locale) );
}
}
以上程序执行结果为:
- 返回值 :www.baidu.com
- 返回值 :www.baidu.com