Converting a char to uppercase

前端 未结 10 710
南方客
南方客 2020-12-02 09:48
String lower = Name.toLowerCase();
int a = Name.indexOf(\" \",0);
String first = lower.substring(0, a);
String last = lower.substring(a+1);
char f = first.charAt(0);         


        
10条回答
  •  爱一瞬间的悲伤
    2020-12-02 10:15

    If you are including the apache commons lang jar in your project than the easiest solution would be to do:

    WordUtils.capitalize(Name)
    

    takes care of all the dirty work for you. See the javadoc here

    Alternatively, you also have a capitalizeFully(String) method which also lower cases the rest of the characters.

提交回复
热议问题