Java String toLowerCase() 方法

返回 Java Strings 类


toLowerCase() 方法有两种形式。 将此字符串中的所有字符转换为小写。

语法

public String toLowerCase()

// 或

public String toLowerCase(Locale locale)

参数

locale - 语言环境

返回值

返回转换后的小写字符串

示例

public class Main {

   public static void main(String args[]) {
      String Str = new String("Welcome to jiyik.com");

      System.out.print("Return Value :");
      System.out.println(Str.toLowerCase());
   }
}

运行示例

上面示例编译运行结果如下

Return Value :welcome to jiyik.com

返回 Java Strings 类

查看笔记

扫码一下
查看教程更方便