so I'm having issues with finding regex match in textbox2.text (the text looks like a javascript file) here is my code:
string file = Regex.Match(textBox2.Text, @"rl='(.*)'", RegexOptions.IgnoreCase).Groups[0].Value;
I'm trying to find what is between rl=' & ' but I'm getting what is between + rl=' and ' the "()" don't seem to work? >.<
Any idea what is the issue?
