Java String Capitalize Word capitalizeEachWord(String string)

Here you can find the source of capitalizeEachWord(String string)

Description

Capitalizes The First Character Of Each Word In The String.

License

EUPL

Parameter

Parameter Description
string a parameter

Declaration

public static String capitalizeEachWord(String string) 

Method Source Code

//package com.java2s;
/*//from w  w  w . j a  v a  2s  .c  om
 * Copyright 2013 SmartBear Software
 * 
 * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by the European Commission - subsequent
 * versions of the EUPL (the "Licence");
 * You may not use this work except in compliance with the Licence.
 * You may obtain a copy of the Licence at:
 * 
 * http://ec.europa.eu/idabc/eupl
 * 
 * Unless required by applicable law or agreed to in writing, software distributed under the Licence is
 * distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
 * express or implied. See the Licence for the specific language governing permissions and limitations
 * under the Licence.
 */

public class Main {
    /**
     * Capitalizes The First Character Of Each Word In The String.
     * 
     * @param string
     * @return
     */
    public static String capitalizeEachWord(String string) {
        if (isNullOrEmpty(string))
            return string;

        StringBuilder stringBuilder = new StringBuilder();
        for (String word : string.split(" "))
            stringBuilder.append(" ").append(capitalize(word));
        stringBuilder.deleteCharAt(0);

        return stringBuilder.toString();
    }

    /**
     * Checks of the given String is null or empty.
     * 
     * @param string
     * @return
     */
    public static boolean isNullOrEmpty(String string) {
        return string == null || string.equals("");
    }

    /**
     * Capitalizes the first character of a String. If the String is null, null
     * is returned.
     * 
     * @param string
     * @return
     */
    public static String capitalize(String string) {
        return isNullOrEmpty(string) ? string
                : string.substring(0, 1).toUpperCase() + string.substring(1).toLowerCase();
    }
}

Related

  1. capitalizedWord(String s)
  2. capitalizedWords(String s)
  3. CapitalizeEachWord(String Str)
  4. capitalizeFirstCharWords(String sentence)
  5. capitalizeFirstLetter(final String word)
  6. capitalizeFirstLetter(String word)
  7. capitalizeFirstLetterEachWord(String sentence)