Java String Capitalize First capitalizeFirstLetter(String text)

Here you can find the source of capitalizeFirstLetter(String text)

Description

capitalize First Letter

License

Open Source License

Declaration

public static String capitalizeFirstLetter(String text) 

Method Source Code

//package com.java2s;
/*/* www .jav a  2s. c o  m*/
 * AllBanks - AllBanks is a plugin for CraftBukkit and Spigot.
 * Copyright (C) 2016 Josue Israel Acevedo Pe?a
 *
 * 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 2
 * 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, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

public class Main {
    public static String capitalizeFirstLetter(String text) {
        String[] split = text.split(" ");
        String finalStr = "";

        for (String s : split) {
            finalStr += s.substring(0, 1).toUpperCase() + s.substring(1).toLowerCase() + " ";
        }

        return finalStr.substring(0, finalStr.length() - 1);
    }
}

Related

  1. capitalizeFirstLetter(String str)
  2. capitalizeFirstLetter(String str)
  3. capitalizeFirstLetter(String str)
  4. capitalizeFirstLetter(String string)
  5. capitalizeFirstLetter(String string)
  6. capitalizeFirstLetter(String[] strArr)
  7. capitalizeFirstOnly(String original)
  8. capitalizeFirstOnly(String s)
  9. capitalizeTheFirstLetter(String input)