正規表現="..(group1).. | ..(group2).."があるとしましょう。
pattern.matcher(regex)
matcher.find()
// how can i access the result??
// i dont wanna use matcher.group(1) or matcher.group(2)
// since i don't really know what will be the result.
あなたが見ることができるように、私は私の結果を得る方法を知りません。matcher.getResultedGroupのようなものを探しています。誰かが私が何をすべきか説明してもらえますか?
- あなたが私の知識を拡大するための他の提案があれば、私は聞きたいです。