Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は次のように括弧で文字列を分割しています:
string.split("\\(\\)");
ここで、以下を5つの単語に分割する必要があります。
This (is ((()(my test text)
分割された文字のいずれかが別の文字の後に続く場合、分割が発生しないようにするには、何を変更する必要がありますか。
期待される結果は次のようになります。
This is my test text
正規表現で、隣接する2つ以上の括弧を選択するようにします。
[()]+
string.split("[()]+"); // or "(?:\\(|\\))+"