im trying to do this for 5 hours im desperate im gonna get mad. please helpme.
var start = new List<string>( ) {"Report", "Audit" , "Committee" } ;
string expresss= start[0] + @"(.*?)\n{0,1}(.*?)" + start[1] + @"(.*)$";
MatchCollection matches = Regex.Matches(text, "(?im)"+ expresss );
this code fails to find ""REPORT OF THE AUDIT COMMITEE""
but here wit sublime text3's regex ican find it .
please help me to find ""REPORT OF THE AUDIT COMMITEE"" via c# regex code. thanks.