href
次のようにアンカータグの属性を置き換えることができる正規表現を探しています
例:<a href="otherpage.php" >foo</a>
に変更する必要があります
<a href="http://mysite.com/otherpage.php" >foo</a>
誰か助けてくれませんか
Avoid parsing html with regex
Regex
is not a good choice for parsing HTML
files..
HTML is not strict nor is it regular with its format..
Use a parser like htmlcleaner