Here you can find the source of startWithLowerCase(String in)
public static String startWithLowerCase(String in)
//package com.java2s; public class Main { public static String startWithLowerCase(String in) { return in.substring(0, 1).toLowerCase() + in.substring(1); }//from ww w.ja v a 2 s . c o m }