how to uppercase the first letter of a string in java

Solutions on MaxInterview for how to uppercase the first letter of a string in java by the best coders in the world

showing results for - "how to uppercase the first letter of a string in java"
Rafael
14 Jan 2017
1String str = "java";
2str = str.substring(0, 1).toUpperCase() + str.substring(1);
3// str = "Java"
Greta
16 Oct 2020
1String str = "java";
2String cap = str.substring(0, 1).toUpperCase() + str.substring(1);
3// cap = "Java"
4
Felix
28 Sep 2020
1String str = "java";
2String cap = str.substring(0, 1).toUpperCase() + str.substring(1);
3// cap = "Java"
Josefa
14 Jun 2020
1String str = "hello world!";
2
3// capitalize first letter
4String output = str.substring(0, 1).toUpperCase() + str.substring(1);
5
6// print the string
7System.out.println(output);
8// Hello world!
9
Isabella
22 Jan 2018
1StringUtils.capitalize(..)
Campbell
29 Jan 2018
1class Main {
2  public static void main(String[] args) {
3
4    // create a string
5    String message = "everyone loves java";
6
7    // stores each characters to a char array
8    char[] charArray = message.toCharArray();
9    boolean foundSpace = true;
10
11    for(int i = 0; i < charArray.length; i++) {
12
13      // if the array element is a letter
14      if(Character.isLetter(charArray[i])) {
15
16        // check space is present before the letter
17        if(foundSpace) {
18
19          // change the letter into uppercase
20          charArray[i] = Character.toUpperCase(charArray[i]);
21          foundSpace = false;
22        }
23      }
24
25      else {
26        // if the new character is not character
27        foundSpace = true;
28      }
29    }
30
31    // convert the char array to the string
32    message = String.valueOf(charArray);
33    System.out.println("Message: " + message);
34  }
35}
queries leading to this page
how to capitalize one letter in javastring tolowercase capitalize first letterjava how to uppercase a stringjava set first letter uppercasejava print finnish letter of stringcapitalize the first letter of a wordin javahow to remove capitalization from a string in javajava how to uppercase first letter of stringjava convert first letter to uppercasejava uppercase first letter of stringconerst letter case javahow to capitalize first letter in word javajava string first letter capital checkvariable in java with first letter uppercasecapitalize first letter java 8first letter of each word in uppercase javacapitalised javacapitalise the first letter of every word javahow to capitalize th first letter of a word in javahow to convert first letter capital in javastring first letter capital javacapitalize first word os string in javajava make the first letter uppercasehow to convert first letter of each word in a string to uppercase in javacapitalize a character in javato uppercase character javajava set first letter string uppercasehow to capitalize first word javaif first character no uppercase in javahow to make first certain index uppercase in javafirst letter in javahow to print first letter capital in javahow to capitalise output in javacapitalize words in javaprint all capital letters in a string javahow to make the first letter capital in javahow to capitalize first character of string in javamake first letter in string uppercase javacapitalize the first character of a string in javajava capitalize first letter of each wordmake first four chars uppercase javahow to make the first character in uppercase in javafirst character of string uppercase javafirst word uppercase javawhat is used if we have to make a letter capitalin javastring in uppercase in javamake first character capital in string javajava uppercase first letter of each wordhow to convert only first letter capital in javahow to capitalise string in jvaaconvert first character of string to uppercase in javahow to capitalise a letter in javajava first case upperset a strings first char to uppercase in javahow to change text into capital letters in javacheck that first letter uppercase or not javajava to upper case stringcapitalize first letter javajava first letter of name to be uppercasejava format string to first letters of words capitalizeif first letter uppercase in javatolowercase capitalize javawhen to capitalize javajava capital casemake first letter capital javajava capitilize first letterjava capitalize string first lettercapitalise string java and lowercase the restjava capitalize first letter of stringjava change first letter to lowercases capital in string args javajava string convert first letter to uppercasejava capitalize namefirst capital letter in given string javacapitalizatioin in javajava string to upper case first letterjava change first letter to uppercasechange first letter to uppercase javahow to change letter to uppercase in javajava make string first letter uppercasewrite a java program to capitalize the first letter of each word in a sentence without using string functions split string capital letters javacapitalization in javahow to capitalize first letter of a string in javamethod to capitalize the first letter of stringhow to capitalize first word in two stringhow to make first letter lowecasein javahow to make first letter capital in java and htmljava capitalize wordhow to capitalize a word in javacapitalize the first letter in javajava string capitalizefirst char toupper javahow to do first letter uppercase javastring uppercase javaloop to print out the uppercase first and lower case after javajava capitalize textjava capital first letterjava capitalize first lettercapitalize string javcapitalize first litter in javahow to put first letter of string to uppercase in javaput a string in caps javajava change string first characterin java strings how to convert only first character to capitaluppercase character in javamake sure first letter in string is a certain letter javachange a string to capitalized onlyprint all capital letters in a string java 5dhow to capitalize the first letter of a word in javastring uppercase only first letter javajava 8 uppercase first letterturn first char into upper case javastring first character to uppercase javaupper initial javahow to capitalise first letter of string in javafirst vlue of a string is a int or capital stringjava first character to uppercasejava how to capitalize all letterscapitilise javafind first character in string as capital java 8string name capitalize 28 29 javahow to uppercase only the first letter in javacapitalize first letter of string in javachange the firt letter to capital letter in a string in javas capital or small in string in javahow to capitalize first word in two string in javajava string all capsjava capitaluppercase string javafind capital letter in string javacapitalize every word in string javacapital when writing method javacapitalize only the first sringcapitalization javain java 2c it is standard practice to capitalize the first letter of 3ajava initial caphow to make only the first letter of the string uppercase javajava string first char uppercasecapitalize string in javastring uppercase in javahow to capitalize first character in javamake first letter uppercase javaconvert first letter to uppercase in javajava string first letter uppercaseis there a method to capitalize first letter in javacheck if first letter is uppercase javafirst letter capitalized javafirst letter capital of each word in javato capitalize javastring first char uppercase javacapitalize char javahow to make first letter as capital in javastringtokenizer program of converting first letter of word to upper case in javahow to create utility class in java change alphabet in caps lockjava turn first letter of every word to upper casehow to uppercase a specific letter of a string javaonly first letter capital in javaonly first letter capital in string in javajava first char uppercasecapatlaize javaconvert first character of string to uppercasejava capitalize first letter in listcheck capital letter in string javajava capitalize first wordhow to upper case first character in string in javathe function that will put all string in lower case except the first character javafirst letter to upper case method in javajava capitalise first letter of each wordjava to capitalmake letter start with uppercase javafunction java to change first letter uppercasehow to convert first character to uppercase in javahow to capitalise letter in java by characterhow to igone lower case and upper case character of a string in javacapitalize in java string after functionstring first character uppercase java captialize in javajava uppercase first letter in stringhow to make the first letter as the capital in the string in java how to capitalize the first letter in a string javawhy java string variable capitalize first letterjava function to capitalize first letterstring touppercase first letter javahow to capitalize a character in javahow to capitalize in javasmall to capital in javajava how to capitalize first letterstring capitalize in javamake upper case first letter of each word javafirst letter of string upercase javamake letter in sentence capital javahow to set first letter to be capital javaupper case first letter in string in javajava capital letter of stringjava string capitilize utils1st letter capital in javahow to convert first letter to lowercase in javacapitaize first letter in java programfirst letter upercase javajava make string uppercasefirst letter in word uppercase in java skillrackjava capitalise first letter every wordjava look for capital letters i string 5dhow to captalize first letter in javahow to make upper case first letter in javacan methods start with a capital letter javajava convert string to first letter capitalcapitaliza the first letter ina astring in javacapitalize letter of word javatext capitalize a string in javajava capitalize letterjava string make first letter uppercasejava first string letter uppercasejava how worf to first capitalizehow to capitalize the first letter of string in javawhy string is written in capital in javamake the first letter uppercase in javahow to capitalize first letter in stringfor loop upper case first javacapitalize first letter of each javahow to capitalize a string in javajava string first letter captalizeconvert lower case string to upper case first word javahow to uppercase first letter in javajava first letter maj string capitalize first letter of a string javacapitalise each word in a sentence javahow to captilize string programtically javamake first letter uppercase and all others lowercase javareplace first character in string java to uppercasejava find first capital letter in stringhow to convert 1st letter in the string to upper in javauppdercase the first letter of a string javahow to convert all word to capital in javajava how to make string uppercasejava uppercase first letter of each word java 8make first character of string uppercase javajava regex first letter in capsmake the first letter capital javajava capital letters variablesupper case string in javajava create function that check first letter capitalhow to turn a name from user into only first letter being capital javajava set first string to uppercasesubstring java capital lettershow to make first letter of string uppercase in javahow to capitalise very frist letter javamake uppercase string javajava capitalized first letter upper case first javahow to get first character of a string is in uppercasehow to get java to print the 1st letter of a word as a capitaljava capital stringcapitalise string javajava method to capitalize first letterhow to only get the capital letter from a string javacapitalize program javastring method to make first letter capitalize in javajava how to change the first letter to uppercasejava capitalize character in stringhow to uppercase the first letter of a string in ajvahow to make 1st letter capital in javastring to uppercase i javacapitalize javafirst capital letter string javamake capital the first letter string javastart with capital letter java and all lower lowercasehow to set string to all capital in javahow to capitalize first letter javais capital in javaconvert only first letter uppercase javajava string replace first character uppercasecapitalize the first letter of a string in javacapitalize the first letter of every word javajava initcap examplefunction in java to capitalize first letterlower to upper case but only first character in string javauppercase in javajava first to uppercaseto uppercase in first letter javafirst character of each word to uppercase in javahow to check if hte first letter in a word is capitalised in javahow to convert string to capital letter in javahow to make first letter capital and the rest lower case javamanage the following exceptions as follows 3a i when first character is not capital java method to capitalize the first letterjava make capitalize first char of stringstart string with capital letetr in javacapitalize the first letter of a string javamake every first letter capital javajava uppercase only first letterhow to capitalize first alphabet of a string in javahow ti change first letter of a stringjava make first character uppercasemake first character capital javawrite a function to capitalize every word in string javajava how to capitalise first letter onlyfirst character to uppercase javajava code to capitalize the first letter of each wordstring util to convert string to first letter of each word capital in javahow to capitalize words in javajava return string with uppercase first letterhow come i cant capitalize every word in java programmake the first letter of a word capital in javajava method to convert first letter of a string to uppercaseconvert 1st letter of string to uppercasestring first character capitalizedjava how to find capital letters on a stringjava program to find all letters in the word are capitaljava string first letter to uppercasecapitalize the first letter of string in javajava to uppercase stringhow to capitalize only first letter of a stringconverting first letter of a string to uppercase in javacaptialize string in javacapitalising a string with javacapitalize character in javamake the first character uppercase javajava regex uppercase first letterupper 1st letter string javajava capitalize first letter of sentencejava first letter uppercase rest lowercase using substringjava to uppercase first letterfirst letter uppercase in javajava split string by capital lettershow to make the first letter of a string uppercase javajava change capitalizationis string capitalized in javaloop to string uppercase first and low case after javacapitalize in javastringutils capitalize first letter capitalize javajava how to capitalize first letter of namestring first letter uppercase rest lowercase javahow to capatalize a string in javabasic program to capitalize first letter of every word in a string javato capitalize in javacapitalise first letter javareverse the string in java only first letter uppercasecapitalize a string in javajava check if string has first letter capitaljava first letter uppercasejava how to make the first character of a string capitalstart with upper case in javahow to capitalize all letters in javajava why is string capitalizedmake first letter uppercase in sentence javahow to change the first character to uppercase in javaonly first letter of centence capital javajava program to capitalize each word in stringhow to capitalize string in javastringutils lowercase first letter stringutilschange first character to uppercasejava check first character of string is uppercasecapitalizing the first char in a string in javajava uppercase stringfirst letter capital in java stringjava string capitalize first lettershow to capitalize the first letter javajava string format capitalizejava first character of string to uppercasejava shoud function be capitalize first letterjava function capitalize first letterconverting a string to uppercase in javajava in capital letterscapitalize first letter of string javajava make only the first letter is capitalizedjava string to capitalize first letters allcapitalise in javajava capital letterhow to convert first letter capital in string in javahow to captizlie the first letter of a string in javacapitze the first letter of a string javahow to convert first letter of string to uppercase in javafirst letter captalize javajava program to print first letter of string in uppercasejava capitalize first leter in stringcapita letter javajava methods capital letterhow to make a letter uppercase in javacapitalize the first letter javcahow to capitalize only the first letter in javahow to make first character uppercase in javainit cap javahow to capitalize only first letter of a string in javamethod for capitalizing first letter in javajava 11 capitalize first letter in stringuppercase first letter of string javacapitalize first letter of every word javajava convert string to capital lettersstring functions uppercase in javafirstletter of sentence in java capital lettercapitalize only first line of a string in javachaange the first letter of a string to uppercase in javahow to check if first letter is uppercase javajava string first character capitalcapitalize the first letter string javacapitalize method for string in jaaset the name capitalizing javamake string all caps javaupper case the first letter javachange the first three letter to capital letter in a string in javacapitalize 28 29 javauppercase first letter string javajava convert string to first letter capital all smalhow upercase first character of string in javajava capitalize codehow to convert first letter of string to uppercasejava captialize first letter of stringdo you capitalize the word javawhy is java string capital capitalize the first offucrence of any character in a string javajava lowercase first letterhow to make a string uppercase in javauppercase first letter of each word javacapitalize word javajaba 8 capitalize first letter in the stringto upper case java nly first letterextract java string capital letterfirst letter uppercase javastring in java to uppercase first letterconvert string to first letter capital javauppercase only first letter javahow to make the first letter of a word capital in javacapitalise first letter in string in javajava code to capitalise the first letter of the first and last namesjava make first char at string uppercasehow to put to uppercase the first letter in javafunction capitalize first letter javahow to check if the first letter of a string is uppercase in javamake first letter small in javauppcase first letter javahow to upper case first letter in string javahow to convert give string first letter capital in javafirst letter alphabet is capital in javahow to convert string first letter upper in javastring string first letter uppercase javacapitalizefully javacapitalize a letter in javaprogram to capitalize first letter of each word in javafirst uppercase javahow to make first letter capital of input in javacapitalize string javathe whole string should be in upper case or lower case or first character uppercase in javahow to capitalize word javahow to capatalize the first letter in a string javaupper first character javacheck if only first letter is uppercase java in centenceconvert string to capital letters javacapitalize first later of string in javato make first letter of word in string capital javajava string capitalize libraryhow to capitalize javajava capitalize every wordhow to check first letter of string is capital in javajava capitalizing lettershow to capitalise the first letter of a word in javahow to make first letter capital in javacapitialize string javastring first character in upper case in javahow to check if the first char of a string is uppercase in javahow to capitalize first letter of each word in javahot to change the first letter of string to caps in javajava 8 capitalize first letter in the wordhow to uppercase first letter after period in javahow to captialize string in javacapitalizestring method javajava convert string to first letter capital rest all smallhow to uppercase first letter of a string in javacapitalized first letter in javamake string first element uppercase javacapitalize in jvafirst letter in word uppercase in javajava upcase fist lettermake every first letter of a world capital javahow to take first character if uppercase in javajava string uppercase first lettercheck first letter capital followed by small or uppercase letters in javajava string equals 28string 29 capital lettersjava first letter capitalstring first letter uppercase javahow to uppercase the first letter of a string in javamake a string first letter uppercase javahow to make only first letter capital in javajava is capital letterconvert all word to capitalize in javahow to make only the first letter of a string capital javaconvert first character of string to uppercase javacapitalizes first character string javahow to turn first letter to uppercase in javamethod to only capitalize first letter in javajava how to make every words first letter capitalized in a stringwhen to capitilize first letter in javajava convert first char to uppercasehow to move the first letter capital in javaconvert first letter to uppercasehow to make all the characters uppercase in javajava change all caps to capitalize first lettercapitalize method in javato convert string in uppercase in javastring to first letter uppercase javajava make first letter capitalfirst uppercase letter in a string in javajava capitalize first letter in stringcapetilize javaconvert name into first laetre capital in javauppercase a string in javahow to get first letter of string in capshow to make first character of string uppercase in javafirst letter upper case in javaistittlecase n javacapitalize words programjava check if the first letter is uppercasechange capitalization javacapitalize string javvajava string first character uppercasejava method capitalize first lettercaptilize the first letter javafirst capital letter javamake an upper case letter in javajava 6 string to uppercasehow to find capital letters in a string javajava string to upperfirstjava string only first letter uppercasejava string word capitalizehow to change first letter to capital in javacapitalise string in javajava lowercase the first characterstring capitale letter in javajava capitalize a stringhow to change string words first letter to uppercase in javacapitalize words javajava capitalized stringcapitalise first letter of string in javareturn 1st capitalize letter in java programchange first letter of string to uppercase javacapitalize first character in string using javaupper case java stringstart with uppercase in javamake first letter of string uppercase javahow to capitalize letters in javauppercase the first character of a word in javajava string first character to lowercasecapitalize lowercase javacapilazation in javaconvert first letter from string to uppercase javaif string in string capital javahow to capitalize the first letter in a java stringstring convert first letter to uppercase javahow to convert the first letter of a string to uppercase in javajava word capitalize first lettercapatiliza first word of string in javamethod for capitalization in javajava string method uppercase first letterif first letter uppercase in java without functioncapital letter javastart with capital letter javafirst unique character in a string to uppercase javahow to capitalise first letter javahow to change the first letter of a string to uppercase in javalooping through a sentense and capitalising first letter in javajava text capitalize letter in stringjava capitalize matching lettersjava only the first letter is capitalizedhow to find uppercase letters in a string in javacapital of strings in javacapitalize ach word javacapitalize first character in string javamake string uppercase javahow to get the first letter of a string to upper case in javato lower but capitalize first word in javaprint out the upper case first and low case after javaput the first as capital javajava method capitalizased first lettercapitalize first letter of word javacapital first letter in javajava make character uppercaseconvert first character to uppercase in javareplace small with capital in java only first letterhow to change first letter to uppercase in javajava string first letter capitalcapitalize 1st letter javacapitalizing first letter of a stirng in javajava format string first letter uppercasecapitalize letter javaconvert first letter to uppercase in java of a sentencewhat is the capital letters in javajava string uppercasejava uppercase the first characterchange first letter to lowercase javajava string sentence casejava substring capitalizechange 1st letter capital word javastring function to make first letter capitaldo you capitalize javaset first letter to uppercase javacapitalize every first letter javaif x is a capital letter javajava 2bcheck if the first letter is uppercasehow to make text first letter capital in javacharacter to uppercase javacapitalling first letter in string using charat in javafirst letter uppsercase javauppercase first char in string javamake first letter of a string uppercase javastring capitalize javaset frist letter of stiring to upper case and rest to lower case javajava function to convert first character uppercasefirst letter capital in javajava capitalize first letter of every wordhow to uppercase a word in javacapitalize the string in javaprogram to print the first character in upper casejava capitalize first character in wordconvert 1st letter to uppercase in javahow to print a string to uppercase in javaconvert string first letter capital javajava to capitalizejava uppercase first character of stringhow to make only the first letter of the string uppercase in javajava string first letter upperstring method to see if starts with a capital in javamake string as sentence case javacapitalize paragraph javaset first character uppercase javajava string capitalize first letterjava string upper casecapitalize first letter of each word in a string javado you need to capitalize methods in javafirst letter capital string javahow do i capitalize first and 5th letter of a string in javacapitalise javajava make first letter uppercasecaptlize method in javajava to capital each letterjava uppercase first letterstring first letter uppercasehow to do words 1st letter uppercase in javahow to catpialize the first letter in a string in javacapitalize each word in string javaupper case first letter java stringjava string is capitalhow to uppercase first letter of string javajava string replace first character capittaljava uppercase firstlettercapitalize each work of a string in javahow to capitalize first word of two string in java and combine themhow to capitalise a string javajava capitalizecapitalize the first letter javahow to capitalise first letter in javajava capitalize first letter lowercase rest e2 80 9chow to get the first letter of a string to upper case in java e2 80 9d code answer e2 80 99sjava make start of string capitalupper case first letter javacapitalize first word of string javastring util to convert string to first letter capital in javahow to capitalize first letter of string in javacapitalize first letter of word javawhy is string capitalized in javahow to make the first word in a string capitalizehow to capitalize first letter of every word in javahow to convert first letter capitalize in string in javamake first character uppercase in javamake first letter capital in javacapitalize program in javahow to make first character in uppercase in javajava make capital first char of stringcapitalize letters in javajava capitalise first letterjava each first word to uppercasehow to convert a letter from a string to upper case javacaptalize string javahow to capitalize string or substrings in javacapitalizefully java examplecapatilze first letter in a string javahow to capittialize only the first letter from the string in java how to capitalize first letter of string javafirst letter of string to uppercase javahow to capitalize first letter in a string javajava first uppercase other lowercasejava capitalize all lettersjava captialize first letterjava set first letter string uppercase pythonmaking first character capital in string javastring to capitalize javajava uppercase first three characters of a string in javathe string methods for the first capital letter java set first character to uppercaseupper case string javahow to return a string with the first character capitalized in javafirt letter upper case javajava set first char to uppercaseto uppercase first letter javagrabbing first character of string java is uppercasecapitalise first letter of string javastring java capitalize first letterhow to convert string as initial as capitalconvert first letter of each word to uppercase in javashould functions first letter be capitalized javawhy java string capitalonly first letter capital in string in java regexchange the first letter to uppercase javahow to set first character as capital javahow to separate capital and small letters in a string javaconvert string to capital javacapitalize a letter javajava capitalise first letter uppercase and lowercase restcapitalize first letter in javajava capitalize first letter stringjava string to capitalize first letterhow to capitalize first letter java and the rest lowercaseconvert first letter of string to uppercasejava how to replace a word with uppercase for first letterhow to uppercase first letter of java uppercase the first letter java uppercasse in javacapitalize function in javahow to capitalize the first letter in a string in javahow to convert first character of string to uppercase in javadifferentiate string capital letters in javafunction to capitalise the first letter of a string in javahow to capital the first letter in javacapitalize the first letter of each word in a sentence javajava string upper first letterhow to print capital letters in javajava check if first letter is uppercasejava letter to capitalandroid how to make only one word uppercase in a stringfirst letter of string to uppercase java rest small caseregex uppercase first letter javamethod to capitalize first cha rin javahow to change the first character of a string to uppercase javahow to make first letter capital javato upper case in java first letterstring function to capitalize first letter in javajava function that capitalizes first letter of stringcapitalize first character of string javajava classes capital first letter 3fcapitalize first letter of each word javastring method to make first letter capital in javajava first char of string to uppercasejava capitalize firt wordcapitalize first letter of each word java build injava array first letter uppercaseto capitaliza a character in a stringshould the name for the method be capitalized javajava check capitalized stringhow to make first certain char uppercase in javaconvert first letter to uppercase javacapitalise first character string javastring to have capitalize name javafirst letter in capitale javahow to capitalise first letter of a string javagiven a string s 2c write a program to title case every first letter of words in string first message uppercase in javajava capitalyse first leterjava upper case first lettercaptialize first letter in string javacapitalize a word javato make first letter capital in javado you capitalize s in string in javahow to uppercase one char in javastring function to capitalize first letter javaupper case the 1st alphabet of a letter javajava first letter to upper casejava utils capitalize first letterjava capitalize stringhow to capitalize first letter in string suppercase the first character in a string javatwo convert first letter to uppercase in javajava regex of first character capital onlysecond words starting with capital letter javastr capitalize javaconvert first letter of word to uppercase in javastring caps methods javajava uppercase first letter of wordjava cpaitalize first letterchange to uppercase first letter javacheck if only first letter is uppercase javajava how to capitalize a stringjava 8 string first letter uppercasecapitalize a string javacapitalizes first letter of string javaconvert string first character uppercase and assign it to string javachange string to capital letters javaconvert first letter to uppercase in word javajava to init capcapital character javahow to convert the first letter of a word in uppercase in javahow to capitalize the first letter in string javato check first letter of word in string is capital javauppercase the first character of a string in javacapitalization methods javais string capitalized in jvaajava to capital casejava first letter to lowercasefirst letter capital next small and so on javachange case first letter javaconverting a strings 27s first character to uppercase in javauppercase string in javafirst character uppercase in javacapitalization letter in javawhat does capitalize do in javahow to capitalize the first letter of a string in javajava string first character to uppercasecapitalize the fist letter javahow to change capital in javahow to make uppercase for first word in jvahow to capitalise string java java program to make first character of each word in uppercasehow to make string first letter capital in javafirst letter capital javacapitalize first letter if string is smalljava capitalize each wordhow to make text uppercase in first letter javato uppercase first letter after space javajava string only first letter uppercase in jshow to make the first word in a string capitaljava uppercase firstjava string to uppercase first letterhow to make first letter in a string capital in javajava convert first to caps and all to lowercasejava replace first character to uppercasejava first letter lowercasemake string start with upper case guavajava program to convert a word into uppercase string to upper case in javajava variable capital letterschange first character to uppercase in javawhy is string spelled with a capitalized in javacapitalize string jvahow to capitalize first letter in javacapitalize the first letter in a stringmake first letter capital javascapitalize all words javacapitalise string in jvamake first letter capital in string javacapital of javacapitale first char of every word in javahow to make the first letter capitalized and everything else lowercase javajava check if first character string uppercasejava set first letter to uppercaseuppercase letter javajava capitalize firt letterfirst letter to uppercase javaconvert only the first letter of each word to uppercase in javajava capitalisemake a char uppercase javaconvert first letter of every word to uppercase in javastring capitalize javajava first char to uppercasestring function to make first letter capital in javajava split string at capital lettershow to make each first character of a string capital in javajava string capitalize first letter of each wordfirst capital letter in word javato upper case string javacapitalize word in javacapitalize every first letter of string kotinfull capitalize type in javauppercase first letter javahow to make the first letter upper case and the other lower java1 capitalize the first letter and print in javafind first letter of sentence in java capital letterreturns true if the first letter of the string is uppercase javafirst letter of string in capital javahow to change the first letter of a word in string into upper case in javajava make string with uppercase first lettersmake letter uppercase javastring make first letter uppercase javacapitalize each first letter javaa word capitalization solution in javafully capitalize string javaonly take uppercase letters javainitcap in javacapitalize in java stringjava first letter to uppercasehow to uppercase the first letter of a string in java