I have a string variable with this content:
(<b><a href="#post9736461" title="Show">Permalink</a></b>)
How can I get the 9736461
in an extra variable? The String is always the same, just the numbers changes.
EDIT:
I tried:
Tag = Regex.Replace(Tag, @"(<b><a href=\"#post");
Tag = Regex.Replace(Tag, @"" title=\"Show\">Permalink</a></b>)");