Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a String that contain few word i need that each first letter of the word will be upper case

Example: String Name= "jean cristoff";

result: Jean Cristoff

how can i do that?

Thanks for helping!!

share|improve this question
possible duplicate of How to upper case every first letter of word in a string? – Joachim Sauer May 4 '11 at 12:04

3 Answers

How to upper case every first letter of word in a string?

share|improve this answer
1  
This should be a close vote or a comment (if you don't yet have the rep to vote to close). – Joachim Sauer May 4 '11 at 12:05

Here are a bunch of answers to a similar question: How to upper case every first letter of word in a string?

share|improve this answer
Strings[] strings = name.split(" ");
StringBuilder builder = new StringBuilder();
for (String string : string) {

  String str = string.substring(0,1).toUpperCase() + string.substring(1,string.length());
  builder.append(str).append(" ");
}
String result = builder.toString();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.