Ein String ist eine Klasse des „java.lang“-Pakets, das eine Reihe von Zeichen speichert. Diese Zeichen müssen im Allgemeinen in doppelte Anführungszeichen gesetzt werden Klein- und Großbuchstaben in Java. Außerdem ist es möglich, Kleinbuchstaben in Großbuchstaben umzuwandeln. In diesem Artikel geht es um die Umwandlung des ersten Zeichens jedes Wortes in Großbuchstaben in einer Zeichenfolge
Java-Programm zur Großschreibung des ersten Zeichens jedes Wortes in einem StringBeispiele
Eingabezeichenfolge
simply easy learning tutorialspoint
Ausgabezeichenfolge
Simply Easy Learning Tutorialspoint
Die chinesische Übersetzung von
Beispiel 1Methode
public class Capitalize { public static void main(String[] args) { String myinput = "simply easy learning tutorialspoint"; // store each character to a char array char[] charAray = myinput.toCharArray(); System.out.println("Before capitalizing: " + myinput); // for loop to capitalize first letter for(int i = 0; i < charAray.length; i++) { // capitalizing first letter of first word charAray[0] = Character.toUpperCase(charAray[0]); // loop to check if there is space between two letters if(charAray[i] == ' ') { // capitalizing first letter of rest of the word charAray[i+1] = Character.toUpperCase(charAray[i+1]); } } // converting the character array to the string myinput = String.valueOf(charAray); // to print the final result System.out.println("After capitalizing the first letter: " + myinput); } }
Before capitalizing: simply easy learning tutorialspoint After capitalizing the first letter: Simply Easy Learning Tutorialspoint
public class Capitalize { public static void Capital(String myinput) { // user-defined method // store each character to a char array char[] charAray = myinput.toCharArray(); // for loop to capitalize first letter for(int i = 0; i < charAray.length; i++) { // capitalizing first letter of first word charAray[0] = Character.toUpperCase(charAray[0]); // loop to check if there is space between two letters if(charAray[i] == ' ') { // capitalizing first letter of rest of the word charAray[i+1] = Character.toUpperCase(charAray[i+1]); } } // converting the character array to the string myinput = String.valueOf(charAray); // to print the final result System.out.println("After capitalizing the first letter: " + myinput); } public static void main(String[] args) { String myinput = "simply easy learning tutorialspoint"; System.out.println("Before capitalizing: " + myinput); Capital(myinput); // calling the method to capitalize } }
Before capitalizing: simply easy learning tutorialspoint After capitalizing the first letter: Simply Easy Learning Tutorialspoint
Das obige ist der detaillierte Inhalt vonJava-Programm: Den ersten Buchstaben jedes Wortes in einer Zeichenfolge groß schreiben. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!