vote up 0 vote down star

How can I change the url of my images from this:

http://www.myOLDwebsite.com/******.*** (i have gifs, jpgs, pngs)

to this:

http://www.myNEWwebiste.com/somedirectory/******.***

Using REGexp text editor?

Really thanks for your time

[]'s

Mateus

flag
Platform details would help – AnthonyWJones Feb 8 at 15:38
txt, I have a huge list of images on the root of that url.. for this new website I have to move images to new folder, but the folders are the same.. like myOLDwebsite.com/test will be myNEWwebsite.com/test, thanks – mateus Feb 8 at 22:22

3 Answers

vote up 3 vote down

Why use regex?

Using conventional means, replace:

src="http://www.myOLDwebsite.com/

with:

src="http://www.myNEWwebiste.com/somedirectory/

Granted, this assumes your image tags always follow the 'src="<url>"' pattern, with double quotes and everything.

Using regex is of course also possible. Replace this:

(src\s*=\s*["'])http://www\.myOLDwebsite\.com/

with:

\1http://www.myNEWwebiste.com/somedirectory/

alternatively, if your text editor uses $ to mark back references:

$1http://www.myNEWwebiste.com/somedirectory/

On second thought - why do your images have absolute URLs in the first place? Isn't that unnecessary?

link|flag
hey dude.. because I have folders following that path.. but I want to move only the images to a new location, and all my code is on a txt without html tags... ;) – mateus Feb 8 at 21:44
but thanks anyway! – mateus Feb 8 at 21:45
Why "anyway"? I can't see where this answer would not do what you intend. Have you actually tried it? – Tomalak Feb 9 at 7:52
vote up 2 vote down

Well, the easiest way is probably to use sed in in-place mode:

sed -ir \
 's@http://www[.]myOLDwebsite[.]com/@http://www.myNEWwebsite.com/subdirectory/@g' \
 file1 file2 ...

If for some reason you need to actually interpret the HTML (rather than just do a simple string replacement), a quick script built around BeautifulSoup is going to be safer -- lots of people try to do HTML or XML parsing via regular expressions, but it's very hard if not impossible to cover all corner cases.

All that said, it'd be better if you were using relative links to not have your HTML depend on the server it's hosted on. See also the <BASE HREF="..."> element you can put in your <HEAD> to specify a location all URLs are relative to; if you were using that, you'd only need to do a single replacement.

link|flag
Don’t forget to escape the dots and close the delemiter after the substitution. – Gumbo Feb 8 at 15:42
Just “\.” would also be fine. – Gumbo Feb 8 at 15:53
thanks dude, but I have a long txt only... not tags, php, perl or python, just a giant txt with images at root... – mateus Feb 8 at 21:58
vote up 0 vote down

If you are trying to learn Regular Expressions, you might try using The Regex Coach.

link|flag
I kwon, but for now I just want to treat my very long txt... ;) is this 'the place' for questions or software tips? thanks – mateus Feb 8 at 21:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.