2012-08-31 70 views
0

我試圖做一個搜索並替換了很多文件,我需要格式化下面的HTML。正則表達式來替換<a> href和<img> alt在記事本++

<a href="http://www.XXXXXXXXX.com target=_blank"> 
<img alt="XXXXXXXXX" src=http://domain.org/files/image.gif" /> 
</a> 

我需要用於XXXXXXX零件的正則表達式。基本上找到使用的域的所有組合和所使用的替代字的所有組合。

某些域名有1 -(短劃線),其他域名有2 -(短劃線),其餘域名不包含。一些alt圖像是2個字,而另一些是3.在域或alt標籤中沒有數字。

任何幫助將不勝感激。

+2

你用鉛筆和PAP做呃用特定的編程語言?無論哪種情況,regex + html都不是好友。 – moonwave99

+1

對[上一個問題]的強制性引用(http://stackoverflow.com/questions/1732348/regex-match-open-tags-except-xhtml-self-contained-tags) –

+0

我打算用它來記事本+ +。它會給我的問題? – DRK

回答

2

替換:

a href="http://www\..+\.com\ +target 

a href="http://www.NEWVALUE.com target 

替換:

img alt="[^"]+"\ +src= 

img alt="NEWVALUE" src=