Here you can find the source of toTitleCase(String text)
public static String toTitleCase(String text)
//package com.java2s; //License from project: Apache License public class Main { /**/* w ww .j ava 2s . co m*/ * This converts a string to TitleCase (first character uppercase, the rest * left alone). */ public static String toTitleCase(String text) { return text.substring(0, 1).toUpperCase() + text.substring(1); } }