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.
正規表現を使用して、一連の括弧内の一連のテキストを抽出するにはどうすればよいですか。具体的には、これらの括弧自体が 1 つ以上の括弧のセット内にネストされている場合です。例えば:
入力:
_t("someText (I don't want to wear pajamas.)")
出力:
(I don't want to wear pajamas.)
この正規表現を使用できます
\([^()]*\)
List<string> output=Regex.Matches(input,aboveRegex) .Cast<Match>() .Select(x=>x.Value) .ToList();