Java String Capitalize capitalize(String text)

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

Description

Capitalizes the first letter of the given string.

License

Open Source License

Parameter

Parameter Description
text the string to capitalize.

Return

the modified string.

Declaration

public static String capitalize(String text) 

Method Source Code

//package com.java2s;
/**/*w  w  w. ja va  2s . co  m*/
 * Copyright (c) 2013, 2014 Denis Nikiforov.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * 
 * Contributors:
 *    Denis Nikiforov - initial API and implementation
 */

public class Main {
    /**
     * Capitalizes the first letter of the given string.
     * 
     * @param text the string to capitalize.
     * 
     * @return the modified string.
     */
    public static String capitalize(String text) {
        String h = text.substring(0, 1).toUpperCase();
        String t = text.substring(1);
        return h + t;
    }
}

Related

  1. capitalize(String text)
  2. capitalize(String text)
  3. capitalize(String text)
  4. capitalize(String text)
  5. capitalize(String text)
  6. capitalize(String text)
  7. capitalize(String text)
  8. capitalize(String texte)
  9. capitalize(String to_capitalize)