Here you can find the source of toTitleCase(String string)
public static String toTitleCase(String string)
//package com.java2s; //License from project: Open Source License public class Main { public static String toTitleCase(String string) { return string.substring(0, 1).toUpperCase() + string.substring(1, string.length()); }/*from w w w .ja va2 s . c o m*/ }