Java Char Lower Case toLowerCaseForFirstChar(String str)

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

Description

to Lower Case For First Char

License

Apache License

Declaration

public static String toLowerCaseForFirstChar(String str) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static String toLowerCaseForFirstChar(String str) {
        return str.substring(0, 1).toLowerCase().concat(str.substring(1));
    }/*from   www.  java2s.c o  m*/
}

Related

  1. toLowerCaseFirstChar(final String str)
  2. toLowerCaseFirstChar(String str)
  3. toLowerCaseFirstChar(String string)
  4. toLowercaseFirstCharacter(String s)
  5. toLowercaseFirstCharUppercase(final String string)
  6. toLowerCaseInPlace(char[] array)