Ok i have this multiple static html and on each html urls are accompanied with underscore i want to replace all url that has underscore with dash here are the actual codes
1)
<a href="/category/how_to_tell_your_dad_that_you_are_pregnant/index.html">How to tell my dad that i am pregnant</a>
2)
< href="/premarital_sex/index.html">Premarital Sex</a>
should be
1)
<a href="/category/how-to-tell-your-dad-that-you-are-pregnant/index.html">How to tell my dad that i am pregnant</a>
2)
< href="/premarital-sex/index.html">Premarital Sex</a>
i want to replace all URL's on all of my static html how can i do that? or is it even possible?
i tried htaccess but no luck so i'll just have to use notepad++ instead or powergrep but i am not really sure how or where to start :(
thanks in advance guys
EDIT
I guess I'm near:
(href=")*[_](.+?">)