How to capitalize the String first letter in Java
To capitalize the first letter of a string, we can use the substring() method chaining with toUpperCase() method in Java.
Here is an example:
public class Main
{
public static void main(String[] args) {
String name = "beauty";
name = name.substring(0,1).toUpperCase() + name.substring(1).toLowerCase();
System.out.println(name);
}
}
Output:
Beauty