Here you can find the source of capitalizePlayerName(String name)
public static final String capitalizePlayerName(String name)
//package com.java2s; //License from project: Open Source License public class Main { public static final String capitalizePlayerName(String name) { String capitalizedName = name.substring(0, 1).toUpperCase() + name.substring(1); return capitalizedName; }//w w w.j a v a 2 s.co m }