Java String Upper Case toUpperCaseFirstChar(String string)

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

Description

to Upper Case First Char

License

Open Source License

Declaration

public static String toUpperCaseFirstChar(String string) 

Method Source Code

//package com.java2s;
/*//from  w  w  w  .  j a va 2s . c o  m
 IBPM - Ferramenta de produtividade Java
 Copyright (c) 1986-2009 Infox Tecnologia da Informa??o Ltda.
    
 Este programa ? software livre; voc? pode redistribu?-lo e/ou modific?-lo 
 sob os termos da GNU GENERAL PUBLIC LICENSE (GPL) conforme publicada pela 
 Free Software Foundation; vers?o 2 da Licen?a.
 Este programa ? distribu?do na expectativa de que seja ?til, por?m, SEM 
 NENHUMA GARANTIA; nem mesmo a garantia impl?cita de COMERCIABILIDADE OU 
 ADEQUA??O A UMA FINALIDADE ESPEC?FICA.
     
 Consulte a GNU GPL para mais detalhes.
 Voc? deve ter recebido uma c?pia da GNU GPL junto com este programa; se n?o, 
 veja em http://www.gnu.org/licenses/   
*/

public class Main {
    public static String toUpperCaseFirstChar(String string) {
        if (string == null || string.length() == 0) {
            return string;
        } else {
            char[] charArray = string.toCharArray();
            for (int i = 0; i < charArray.length; i++) {
                if (i == 0) {
                    charArray[0] = Character.toUpperCase(charArray[0]);
                } else {
                    charArray[i] = Character.toLowerCase(charArray[i]);
                }
            }
            return String.valueOf(charArray);
        }
    }
}

Related

  1. toUpperCaseFirstAll(String text)
  2. toUpperCaseFirstChar(final String str)
  3. toUpperCaseFirstChar(String s)
  4. toUpperCaseFirstChar(String str)
  5. toUpperCaseFirstChar(String str)
  6. toUpperCaseFirstChar(String string)
  7. toUpperCaseFirstChar(String text)
  8. toUppercaseFirstCharacter(String s)
  9. toUpperCaseFirstCharacter(String str)