Java String toLowerCase(Locale) 方法
描述
此方法有两个变体。第一个变体根据给定的 Locale 的规则将此 String 中的所有字符转换为小写。这相当于调用 toLowerCase(Locale.getDefault())。
第二个变体使用 locale 作为参数,在转换为小写时使用。
语法
此方法的语法如下:
public String toLowerCase(Locale locale)
参数
以下是参数的详细信息−
- NA
返回值
- 它返回转换为小写的字符串。
示例
import java.io.*;
public class Test {
public static void main(String args[]) {
String Str = new String("Welcome to Tutorialspoint.com");
System.out.print("Return Value :");
System.out.println(Str.toLowerCase());
}
}
这将产生以下结果:
输出
Return Value :welcome to tutorialspoint.com