Split Java String into Two String using delimiter

后端 未结 7 1083
情话喂你
情话喂你 2020-12-03 18:09

I have a string that has the value of name:score. I want to split the string into two strings, string a with the value of name and str

7条回答
  •  有刺的猬
    2020-12-03 18:22

    The split function is suitable for that :

    String[] str_array = "name:score".split(":");
    String stringa = str_array[0]; 
    String stringb = str_array[1];
    

提交回复
热议问题