次の一連の画像マップタグがあります。
<map name="planetmap">
<area shape="rect" coords="0,0,82,126" href="sun.htm" alt="Sun">
<area shape="circle" coords="90,58,3" href="mercur.htm" alt="Mercury">
<area shape="circle" coords="124,58,8" href="venus.htm" alt="Venus">
</map>
href属性を抽出して、別のURLに置き換える必要があります
次のコードを使用していますが、機能しないようです。
string input = @"<area shape=""rect"" href=""http://www.google.com"">";
string pattern = "(href=([^ ]+))";
Regex rgx = new Regex(pattern);
string result2 = rgx.Replace(input, m => m.Groups[1].Value.Replace(result,"test.com"));
誰か助けてくれませんか。
ありがとう