Java toLowerCaseで文字列を小文字に変換するサンプル

環境
Java 17
Windows 11 Pro 64bit

構文
対象文字列.toLowerCase()
文字列を小文字に変換するには、「toLowerCase」を使用します。

使用例

public class TEST {
    public static void main(String[] args) throws Exception {

        String strA = "ARKGAME";
        String strB = "aRKgame";
        
        System.out.println(strA.toLowerCase()); 
        System.out.println(strB.toLowerCase()); 

    }
}

実行結果
arkgame
arkgame

IT

Posted by arkgame