public class Main{
public static void main(String []args) {
String str="welcome! and hello how are you";
String str2=Character.toUpperCase(str.charAt(0))+"";
for(int i=1;i<str.length();i++) {
if(Character.isSpaceChar(str.charAt(i-1)))
str2+=Character.toUpperCase(str.charAt(i));
else
str2+=str.charAt(i);
}
System.out.println("Before "+str);
System.out.println("\nAfter "+str2);
}
}
No comments:
Post a Comment