Java String Capitalize First capitalizeFirst(String str)

Here you can find the source of capitalizeFirst(String str)

Description

Convert the first character in a string to uppercase.

License

Apache License

Parameter

Parameter Description
str the string to be capitalized

Return

the capitalized string

Declaration

public static String capitalizeFirst(String str) 

Method Source Code

//package com.java2s;
/*******************************************************************************
 * Copyright (c) 2010, 2012 Institute for Dutch Lexicology
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.// w  w  w  .ja v a 2s .c om
 *******************************************************************************/

public class Main {
    /**
     * Convert the first character in a string to uppercase.
     * @param str the string to be capitalized
     * @return the capitalized string
     */
    public static String capitalizeFirst(String str) {
        if (str.length() == 0)
            return str;
        return str.substring(0, 1).toUpperCase() + str.substring(1);
    }
}

Related

  1. capitalizeFirst(String s)
  2. capitalizeFirst(String str)
  3. capitalizeFirst(String str)
  4. capitalizeFirst(String str)
  5. capitalizeFirst(String str)
  6. capitalizeFirst(String str)
  7. capitalizeFirst(String string)
  8. capitalizeFirst(String string)
  9. capitalizeFirst(String toCap)