using System.Text.RegularExpressions; Regex regex = new System.Text.RegularExpressions.Regex("ここに正規表現"); if ( regex.IsMatch("テストする文字列")) マッチ! MatchCollection matchCol = regex.Matches(this.tbInput.Text); for(int i = 0; i < matchCol.Count; i++) { matchCol[i].Value); } using System.Text.RegularExpressions; Regex regex = new System.Text.RegularExpressions.Regex("ここに正規表現"); MatchCol