-2

href次のようにアンカータグの属性を置き換えることができる正規表現を探しています

例:<a href="otherpage.php" >foo</a>に変更する必要があります

<a href="http://mysite.com/otherpage.php" >foo</a>

誰か助けてくれませんか

4

1 に答える 1

1

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

于 2012-11-02T06:02:28.033 に答える