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

python - Selenium remoteWebDriver (& SauceLabs) Firefox moseMoveTo action exception -

html - How to custom Bootstrap grid height? -

Ansible warning on jinja2 braces on when -