Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What is a good way to extract filename.jpg from:

url = 'http://www.example.com/foo/bar/filename.jpg?2384973948743'

I'm using Ruby 1.9.3.

share|improve this question
1  
was some answer useful for you? – slivu Dec 4 '12 at 19:10
Yes, your answer was useful. I upvoted it. – B Seven Dec 4 '12 at 19:27
thanks! not sure why i naively thought that useful answers are marked as accepted :) – slivu Dec 4 '12 at 19:34
@silvu, is it necessary to troll to have your answer be accepted? It's considered good form to accept an answer, and it's considered bad form to troll for them. You two meet somewhere in the middle, but it's up to the OP to decide. – the Tin Man Dec 4 '12 at 19:37

2 Answers

up vote 6 down vote accepted
require 'uri'

url = 'http://www.example.com/foo/bar/filename.jpg?2384973948743'

uri = URI.parse(url)

puts File.basename(uri.path)

#=> filename.jpg
share|improve this answer

The easiest way is probably to use URI.parse

url_object = URI.parse([my url])
url_path = url_object.path
filename = url_path.split("/").last
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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