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.

enter image description here

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

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -