Split String into an array of String

前端 未结 2 381
日久生厌
日久生厌 2021-02-01 18:33

I\'m trying to find a way to split a String into an array of String(s), and I need to split it whenever a white spice is encountered, example

\"hi i\'m pa

相关标签:
2条回答
  • 2021-02-01 19:16

    You need a regular expression like "\\s+", which means: split whenever at least one whitespace is encountered. The full Java code is:

    try {
        String[] splitArray = input.split("\\s+");
    } catch (PatternSyntaxException ex) {
        // 
    }
    
    0 讨论(0)
  • 2021-02-01 19:22

    String[] result = "hi i'm paul".split("\\s+"); to split across one or more cases.

    Or you could take a look at Apache Common StringUtils. It has StringUtils.split(String str) method that splits string using white space as delimiter. It also has other useful utility methods

    0 讨论(0)
提交回复
热议问题