I need a quick compact way of changing a string to first letter uppercase and the rest lower case in jsp such as INDIAN --> Indian Like this format in jsp
String fullname = rs.getString("fullname").Lower();
The above function is not running
I need a quick compact way of changing a string to first letter uppercase and the rest lower case in jsp such as INDIAN --> Indian Like this format in jsp
String fullname = rs.getString("fullname").Lower();
The above function is not running