I want to match var value between quotes. here's input:
bunch of other text, html tags, css
var SECURITYTOKEN = "1354010802-f407561a1503fa33e8e316f058c0f0598ce5adad";
bunch of other text, html tags, css
result should be 1354010802-f407561a1503fa33e8e316f058c0f0598ce5adad
i was trying something like this: Match m = Regex.Match(input, @"var\sSECURITYTOKEN\s="); but im totally confused.