convert first letter to uppercase code example
Example 1: javascript capitalize words
function capitalizeFirstLetter(string) {
return string.charAt(0).toUpperCase() + string.slice(1);
}
function capitalizeWords(string) {
return string.replace(/(?:^|\s)\S/g, function(a) { return a.toUpperCase(); });
};
Example 2: how to uppercase the first letter of a string in java
String str = "java";
String cap = str.substring(0, 1).toUpperCase() + str.substring(1);
Example 3: how to capitalize first letter in java
class Main {
public static void main(String[] args) {
String message = "everyone loves java";
char[] charArray = message.toCharArray();
boolean foundSpace = true;
for(int i = 0; i < charArray.length; i++) {
if(Character.isLetter(charArray[i])) {
if(foundSpace) {
charArray[i] = Character.toUpperCase(charArray[i]);
foundSpace = false;
}
}
else {
foundSpace = true;
}
}
message = String.valueOf(charArray);
System.out.println("Message: " + message);
}
}
Example 4: make first letter uppercase
const publication = "freeCodeCamp";
publication[0].toUpperCase() + publication.substring(1);