Here you can find the source of capitalize(String string)
public static String capitalize(String string)
//package com.java2s; //License from project: Open Source License public class Main { public static String capitalize(String string) { String[] nameList = string.toLowerCase().replace("_", " ").replace("-", " ").split(" "); String name = ""; for (String word : nameList) { name = name + word.substring(0, 1).toUpperCase() + word.substring(1).toLowerCase() + " "; }/*from ww w . j a v a 2 s . c o m*/ if (name.endsWith(" ")) name = name.substring(0, name.length() - 1); return name; } }