Change case in Java

public class Main 
{
    public static void main(String[] args) 

   {
    // define the string
    String cad = "Welcome to WiseCodes.Com";
   // string to uppercase
   // OUTPUT: WELCOME TO WISECODES.COM ...
   String cad_uppr = cad.toUpperCase();
   System.out.println(cad_uppr);
   // string to lowercase
   // OUTPUT: welcome to wisecodes.com ...
   String cad_lowr = cad.toLowerCase();
   System.out.println(cad_lowr);
  }
}

Comments