java 文字列を大文字に変換する

java 文字列を大文字に変換する

javaで、文字列を大文字に変換する手順を記述してます。「toUpperCase」で可能です。全角も変換されます。

環境

  • OS windows11 home
  • java 19.0.1

手順

文字列を大文字に変換するには、「toUpperCase」を使用することで可能です。

文字列.toUpperCase()

実際に、使用してみます。

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

        String str1 = "mebee";
        String str2 = "Mebee";
        
        System.out.println(str1.toUpperCase()); // MEBEE 
        System.out.println(str2.toUpperCase()); // MEBEE

    }
}

変換されていることが確認できます。

全角も大文字に変換されます。

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

        String str1 = "m";
        
        System.out.println(str1.toUpperCase()); // M 

    }
}

小文字に変換

逆に小文字に変換する場合は「toLowerCase」を使用します。

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

        String str1 = "MEBEE";
        String str2 = "mEEBE";
        
        System.out.println(str1.toLowerCase()); // mebee 
        System.out.println(str2.toLowerCase()); // mebee

    }
}