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?
|
Given URI strings like:
What's the most elegant way in Ruby to grab the |
|||
|
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
|
|||||||||
|
http://example.com/where?is=pancakes/house%3F. – mu is too short Sep 10 '12 at 5:20/before the first?? – oldergod Sep 10 '12 at 5:27