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.
大きな文字列があり、そこから取得したいアイテムが含まれている可能性があります。
文字列の例は次のとおりです。
"The quick |Get Me|(header1) brown fox |Get Me|(info package) jumps over ..."
正規表現で角かっこの間にあるものを抽出したいのですが、角かっこは含まれていません。角かっこは常に続きます。"|Get Me|"
"|Get Me|"
一致するパターン:
\|Get Me\|\(([^)]+)\)
使用法:
var matches = Regex.Matches(myString, @"\|Get Me\|\(([^)]+)\)"); foreach(Match match in matches) { var val = match.Groups[1].Value; }