Java toLowerCase() 方法
描述
这个方法有两个变体。第一个变体使用给定区域设置的规则将该字符串中的所有字符转换为小写。这相当于调用 toLowerCase(Locale.getDefault())。
第二个变体接受区域设置作为参数,在转换为小写时使用该区域设置。
语法
这个方法的语法如下 –
public String toLowerCase()
参数
下面是参数的详细信息:
- 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