Converting a char to uppercase

前端 未结 10 729
南方客
南方客 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:22

    You can apply the .toUpperCase() directly on String variables or as an attribute to text fields. Ex: -

    String str;
    TextView txt;
    
    str.toUpperCase();// will change it to all upper case OR
    txt.append(str.toUpperCase());
    txt.setText(str.toUpperCase());
    

提交回复
热议问题