Here you can find the source of capitalizeFirstLetter(String string)
Parameter | Description |
---|---|
string | The string whose first letter is |
public static String capitalizeFirstLetter(String string)
//package com.java2s; /*/* www . j a v a 2 s . c om*/ * CrimsonGlow is an adult computer roleplaying game with spanking content. * Copyright (C) 2015 Andrew Russell * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. * */ public class Main { /** * Given a string, returns a new String with the first letter, and only the first letter, * capitalized. * * @param string The string whose first letter is * * @return A new string that is identical to the {@code string} except that every character * but the first is lower case, and the first is upper case */ public static String capitalizeFirstLetter(String string) { String lowerCaseString = string.toLowerCase(); return Character.toUpperCase(lowerCaseString.charAt(0)) + lowerCaseString.substring(1); } }