Void DumpHrefs (String InputString)
{
Regex R;
Match m;
R = New Regex ("HREF // S * = // s * (?: /" (? <1> [^ / "] *) /" | (? <1> // s )) ",
Regexoptions.ignorecase | RegexOptions.comPiled;
For (M = R.Match (InputString); M.Success; m = m.nextmatch ())
{
Console.writeLine ("Found Href" M.Groups [1] "AT"
M.Groups [1] .index);
}
}