Here you can find the source of toLowerCaseFirst(String text)
public static String toLowerCaseFirst(String text)
//package com.java2s; //License from project: Apache License public class Main { public static String toLowerCaseFirst(String text) { return text.substring(0, 1).toLowerCase() + text.substring(1); }//from w w w .j a v a2 s. co m public static String subString(String src, int length) { if (src == null) { return null; } int i = src.length(); if (i > length) { return src.substring(0, length); } return src; } }