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
|
|
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 |
||||
|
|
|
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 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? |
||||||
|
|
|
Well, the easiest way is probably to use sed in in-place mode:
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 |
|||
|
|
If you are trying to learn Regular Expressions, you might try using The Regex Coach. |
||
|