按特定子字符串拆分字符串

时间:2015-09-21 13:08:21

标签: java regex string split substring

说我有这个字符串

[0] playerName19  [1] playerName17  [2] playerName18  [3] playerName15  [4]      playerName59  [5] playerName16  [6] playerName6  [7] playerName60

如何使用Java将其拆分为这样的东西:

[0] playerName19, [1] playerName17, [2] playerName18... 

我尝试使用split(),但问题是playerName编号扩展名是随机生成的,并且每个查询都会更改。

1 个答案:

答案 0 :(得分:2)

根据[num]之前的空格进行分割。

string.split("\\s+(?=\\[\\d+\\])");