Coda 2 - RegEx - Search and Replace Issues -
i'm trying search , replace links in on 400 html pages. pretty need change:
search: domain-name[dot]org/learning/bridge.php?sl=70 replace: replace: seconddomainname[dot]com/water/70.htm
pretty search link1 , replace using link2 keeping number link1. regular expression (link included below) worked when apply coda 2, doesn't work.
is quite simple. don't need escape in search string aside question mark , period.
your search is:
http://domain-name\.org/learning/bridge\.php\?sl=([\d]+)
and replace is:
http://new-domain/water/\1.htm
Comments
Post a Comment