/ Published in: Regular Expression
http://www.trentmueller.com/blog/search-and-replace-wildcard-characters-in-dreamweaver.html
-and-
http://www.webmasterworld.com/forum46/1288.htm
-and-
http://www.webmasterworld.com/forum46/1288.htm
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
The regular expression you seek is: [^"]* so if you want to change all these: <a class="wildcat" href="lion.html"> <a class="wildcat" href="tiger.html"> <a class="wildcat" href="leopard.html"> to: <a class="wildcat" href="bigcat.html"> you search for: <a class="wildcat" href="[^"]*"> and replace with: <a class="wildcat" href="bigcat.html"> (make sure you tick the match case & regular expressions + seclect 'source code')
URL: http://www.webmasterworld.com/forum46/1288.htm