I have been working with parsing data, I got a string like:
"Scottish Premier League (click here to open|close this coupon)"
I would like to extract "Scottish Premier League" with Scottish
Matching Group 1 and Premier League
Matching Group 2, using regular expression.
Please show me the way to do that using regular expression.
MatchCollection matchCol = reg.Matches("Scottish Premier League (click here to open|close this coupon)");