Java: Splitting a string by whitespace when there is a variable number of whitespaces between words?

前端 未结 8 1193
醉话见心
醉话见心 2021-01-01 03:17

I have the following:

String string = \"1-50  of 500+\";
String[] stringArray = string.split(\" \");

Printing out all the elements in this

8条回答
  •  春和景丽
    2021-01-01 03:54

    String[] stringArray = string.split(" +");
    

    instead of

    String[] stringArray = string.split(" ");
    

提交回复
热议问题