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.

Given URI strings like:

http://www.somesite.com/abc
http://www.somesite.com/alpha/beta/abc
http://www.somesite.com/alpha/abc

What's the most elegant way in Ruby to grab the abc at the end of these URIs?

share|improve this question
3  
split('/').last ? – oldergod Sep 10 '12 at 5:06
3  
@oldergod: http://example.com/where?is=pancakes/house%3F. – mu is too short Sep 10 '12 at 5:20
@muistooshort how would you do it? taking everything from the last / before the first ?? – oldergod Sep 10 '12 at 5:27
@oldergod See my answer. – Gumbo Sep 10 '12 at 5:33
@oldergod: yeah, see Gumbo's answer. – mu is too short Sep 10 '12 at 5:37

3 Answers

up vote 5 down vote accepted

I would use a proper URI parser like the one of the URI module to get the path from the URI. Then split it at / and get the last part of it:

require 'uri'

URI(uri).path.split('/').last
share|improve this answer
not working for me with the url mu gave. – oldergod Sep 10 '12 at 5:36
@oldergod So what do you get instead? – Gumbo Sep 10 '12 at 5:38
@muistooshort You can use path.chomp('/') to remove them before splitting. – Gumbo Sep 10 '12 at 6:05
Sorry, I think I'm getting my languages mixed up again, Ruby's split says that 'a/b/'.split('/') == %w[a b] so the trailing slashes aren't an issue. – mu is too short Sep 10 '12 at 6:53
uri.split('/')[-1] or uri.split('/').last 
share|improve this answer

Try these:

if url =~ /\/(.+?)$/
  last = $1
end

Or

last = File.basename(url)
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.