vote up 1 vote down star

any built in methods available to convert a string into titlecase format as such??

flag

2 Answers

vote up 3 vote down

Apache Commons StringUtils.capitalize()

link|flag
1  
+1 for suggesting library use. Common sense reigns for once. However, I'd suggest the use of WordUtils instead of StringUtils, it's got a more flexible set of options. – skaffman Jul 6 at 9:17
vote up 2 vote down

there are no capitalize() or titleCase() methods in String class. You have two choices:

Sample implementation

public static String toTitleCase(String input) {
    StringBuilder titleCase = new StringBuilder();
    boolean nextTitleCase = true;

    for (char c : input.toCharArray()) {
        if (Character.isSpaceChar(c)) {
            nextTitleCase = true;
        } else if (nextTitleCase) {
            c = Character.toTitleCase(c);
            nextTitleCase = false;
        }

        titleCase.append(c);
    }

    return titleCase.toString();
}

Testcase

    System.out.println(toTitleCase("string"));
    System.out.println(toTitleCase("another string"));
    System.out.println(toTitleCase("YET ANOTHER STRING"));

outputs:

String
Another String
YET ANOTHER STRING
link|flag
hey thx a lot!! – Raji Jul 6 at 10:04

Your Answer

Get an OpenID
or

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