up vote 0 down vote favorite
1
share [g+] share [fb]

I need to match a image url like this:

http://site.com/site.com/files/images/img (5).jpg

Something like this works fine:

.replace(/(http:\/\/([ \S]+\.(jpg|png|gif)))/ig, "<div style=\"background: url($1)\"></div>")

Except if I have something like this:

http://site.com/site.com/files/audio/audiofile.mp3 http://site.com/site.com/files/images/img (5).jpg

How do I match only the image?

Thanks!

Edit: And I'm using javascript.

link|improve this question

feedback

6 Answers

up vote 1 down vote accepted

Proper URLs should not have spaces in them, they should have %20 or a plus '+' instead. If you had them written with those alternatives then your matching would be much easier.

link|improve this answer
Sorry, but I can't make all my users edit their files with spaces to include %20. – Mark Jul 1 '09 at 0:26
1  
@mark... your users shouldn't rename the files.. whatever you use to get the file from the users should be doing it as the files come in. – Ape-inago Jul 1 '09 at 1:10
feedback

Why not:

/([^/]+\.(jpg|png|gif))$
link|improve this answer
feedback

Using

http:\/\/.*\/(.*)\.(jpg|png|gif)

should do the trick if all you want is the name of the image. The first group is the file name and the second group is the file extension.

link|improve this answer
Thanks, but I need to match the entire url. – Mark Jul 1 '09 at 0:28
You should probably mention that above as it confused a few of us. – laz Jul 1 '09 at 3:33
feedback

Can you assume that the urls will be space delimited, or return delimited?

As in, can you assume this input?

site.com/images/images/lol (5).jpg
site.com/images/other/radio.mp3
site.com/images/images/copter (3).jpg

If you are going to have your delimiter as part of your string to return, things get tricky. What kind of volume are you talking about here? Could you do it semi-manually at all, or does the process have to be automated?

link|improve this answer
Yes there will always be a white space after the file extension. And I know how horrible it is to have that in the url itself. Perhaps a 2 step process to make the spaces first into %20 might be a good idea. – Mark Jul 1 '09 at 0:59
That's what I'm thinking. Unless you have a definite separator between your image stirngs, like \n, you can't distinguish between site.com\images\img and (5).jpg – glasnt Jul 1 '09 at 1:11
Thanks, do you have a good way to convert the spaces? I think what I was trying to do in my answer is glitchy. – Mark Jul 1 '09 at 1:29
maybe just convert any space that doesn't follow with 'site.com' with %20? – glasnt Jul 1 '09 at 1:50
feedback

Assuming images will always be in the 'images' directory, try:

http://.*/images/(.*?).(jpe?g|gif|png)

If you can't assume an images directory:

http://.*/(.*?).(jpe?g|gif|png)

Group 1 and 2 should have what you want (file name and extension).

I tested the regular expression here and here and it appears to do what you want.

link|improve this answer
Thanks but I can't assume the images directory. The image could be coming from anywhere. :( – Mark Jul 1 '09 at 0:34
Not a huge deal. I suggest you test this regex (use the link I posted). It should give you an idea of what information you will get. – Nick Presta Jul 1 '09 at 0:44
Thanks, but that's very similar to what I have. It matches the entire line of: site.com/site.com/files/audio/audiofile.mp3 site.com/site.com/files/images/img (5).jpg rather than just the image. – Mark Jul 1 '09 at 0:45
Yes, it matches the line, but the captured groups will grab the image (img (5), and jpg). What is wrong with matching the line? – Nick Presta Jul 1 '09 at 0:52
I'm trying to match the url of the image. I've updated my example to show more clearly what I'm trying to do. – Mark Jul 1 '09 at 0:56
feedback

This would be an approach:

^((\w+):)?\/\/((\w|\.)+(:\d+)?)[^:]+\.(jpe?g|gif|png)$

Mathing on the colon. (:) In this case it's only accepted for the protocol and port (optional).

This will not match:

http://site.com/site.com/files/audio/audiofile.mp3 http://site.com/site.com/files/images/img (5).jpg

This will match (colon in second http:// removed)

"/audiofile.mp3 http/" will count as a folder in "/audio/"

http://site.com/site.com/files/audio/audiofile.mp3 http//site.com/site.com/files/images/img (5).jpg

It's not fool proof. There are other characters that are not allowed in filenames ( * | " < > )

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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