... String s2 = "[1],[1,2,3],[1,2,3,4,5]"; match = pattern.matcher(s2); List ss2 = new ArrayList<>(); while (match.find()) { ss2.add(match.group ...
確定! 回上一頁