Regex stackoverflowで見たコードの詳細を調べる
コード
string s = "test [4df] test [5y" + Environment.NewLine + "u] test [6nf]"; ICollection<string> matches = Regex.Matches(s.Replace(Environment.NewLine, ""), @"\[([^]]*)\]") .Cast<Match>() .Select(x => x.Groups[1].Value) .ToList(); foreach (string match in matches) Console.WriteLine(match); 正規表現の意味
\[ : Match a literal [ ( : Start a new group, match.Groups[1] [^]] : Match any character except ] * : 0 or more of the above ) : Close the group \] : Literal ] 自分の場合やりたかったのは 「さむい(小並感)」みたいな文字列から「小並感」を抽出したかった あるいは「ほほほ(へへへ(ふふふ))」から「へへへ(ふふふ)」を抽出
...
Read more