public static String lowerFirst (String s){ char[] cs=s.toCharArray(); cs[0]+=32; return String.valueOf(cs); }