私は正規表現が初めてです。以下の行からポイントデータを分割するにはどうすればよいですか:
((X1,Y1),(X2,Y2),(X3,Y3))
に分割:
(X1,Y1)
(X2,Y2)
(X3,Y3)
前もって感謝します :)
さて、ネストされた括弧が導入されると、括弧または括弧からコンテンツを抽出することは、すぐに正規表現で複雑になる可能性があります。しかし、それでもあなたの現在のケースでは、Pattern
とクラスを使用して結果を得ることができるようです(少し複雑になるため、Matcher
しようとしないでください):split
String str = "((X1,Y1),(X2,Y2),(X3,Y3))";
// The below pattern will fail with nested brackets - (X1, (X2, Y2)).
// But again, that doesn't seem to be the case here.
Matcher matcher = Pattern.compile("[(][^()]*[)]").matcher(str);
while (matcher.find()) {
System.out.println(matcher.group());
}
(XXX,YYY)
これは、パターンの種類を探す他の回答の代替です。
String s = "((X1,Y1),(X2,Y2),(X3,Y3))";
Matcher m = Pattern.compile("(\\(\\w+,\\w+\\))").matcher(s);
while(m.find()) {
System.out.println(m.group());
}