I'm trying to use Regex.Match to match something, but it already has quotes in it, and it cancels the Regex.Match's quotes. I have checked other threads but their answers didn't work for me.
Match divisionWinsLosses = Regex.Match(website, @"<span style="font-size: 18px; color: #6C0; height: 28px; text-shadow: 0 0 1px #000;">(.*?)</span>");
Just in case. The HTML code from the website is this:<span style="font-size: 18px; color: #6C0; height: 28px; text-shadow: 0 0 1px #000;">[What I want is here]</span>