私は次の文字列を持っています:
This is my testasdasd [Test(XYZ="P")] abc sdfsdf
This is my testasdasd [Test(ABC="P")] sdfsdf
This is my testdfsdfsdf [Test(DEF="P")] sdfsdfs
This is my testsdfsdfsdf [Test(GHI="P")] asdfasdasd
上記の文字列の「)」インの後に「、Hello」テキストを追加したいと思います。私の出力は次のようになります。
This is my testasdasd [Test(XYZ="P"), Hello] abc sdfsdf
This is my testasdasd [Test(ABC="P"), Hello] sdfsdf
This is my testdfsdfsdf [Test(DEF="P"), Hello] sdfsdfs
This is my testsdfsdfsdf [Test(GHI="P"), Hello] asdfasdasd
そのための正規表現を作成するのを手伝ってもらえますか?
編集:「]」を検索して置き換えるだけでは上記を実行できません。文字列に他のブラケットもあります。[Test(..)]を見つける必要があり、出力は[Test(...)、Hello]になります。