| @@ -0,0 +1,14 @@ | ||
| package com.yuyuyzl.recomposition; | ||
|
|
||
| /** | ||
| * Created by user on 2015/11/7. | ||
| */ | ||
| public class categoryHelper { | ||
| public static String toFirstUppercase(String s){ | ||
| return s.substring(0,1).toUpperCase()+s.substring(1); | ||
| } | ||
| /*public static void main(String[] args) { | ||
| System.out.println(toFirstUppercase("serrre44")); | ||
| }*/ | ||
| } |