In Ruby, I'd like to convert a slash-separate String such as "foo/bar/baz" into ["foo/bar/baz", "foo/bar", "foo"]. I already have solutions a few lines long; I'm looking for an elegant one-liner. It also needs to work for arbitrary numbers of segments (0 and up).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
The highest voted answer works, but here is a slightly shorter way to do it that I think will be more readable for those not familiar with all the features used there:
The result is stored in
If the order is important, you can reverse the array or use Thanks to dkubb, and to the OP for the improvements to this answer. |
|||||||||||||||||
|
|
|||||
|
|
|
Not quite as efficient as the chosen answer, and gives
|
|||
|
|
|
||||
|
|
FileUtils.mkdir_p, right? – Svante Feb 13 '10 at 10:36