string x = "[string] two[string] (1thing)";
Regex sort1 = new Regex(@"\[(.*?)\]");
MatchCollection sortOpen = sort1.Matches(x);
foreach (Match y in sortOpen)
{
..
}
角かっこで返します: 並べ替えに使用されるタグなしで文字列を返すにはどうすればよいですか?