I have a string similar to this, this string is from a long HTML page source:
"entity_id":"1234567890"
I'm trying to parse the number 1234567890
like this, but the id could not be parsed:
var re = new Regex("\"entity_id\":\"([0 - 9] +)\"");
var match = re.Match(task.Result);
var id = match.Success ? match.Value : string.Empty;
Console.WriteLine(id);
Why it it's not parsed and how to fix it?