I have a wall of html code from a source and I need to extract '1929485' from the source
<input type="hidden" name="key" value="1929485" />
How would I do this? found this online:
var match = Regex.Match(source, @"class="""" onclick=""NewWindow\('([^']*)',\s*'([^']*)',.*");
Unsure what this all means and does?
Thanks.