Java tutorial
public class Main { public static void main(String[] args) { String str = "This Is a Test"; str = str.toLowerCase(); System.out.println(str); } } //this is a test