Here you can find the source of toSentenceCase(String string)
public static String toSentenceCase(String string)
//package com.java2s; /******************************************************************************* * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-3.0-standalone.html ******************************************************************************/ public class Main { public static String toSentenceCase(String string) { return string.substring(0, 1).toUpperCase() + string.toLowerCase().substring(1); }//from ww w . ja v a 2 s . c o m public static String substring(String string, int maxChars, String suffix) { if (string.length() > maxChars) { return string.substring(0, maxChars - 1) + suffix; } return string; } }