Guest User

Untitled

a guest
Feb 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. # WHY?
  2.  
  3. "/foo/bar/baz".split("/")
  4. # => ["", "foo", "bar", "baz"]
  5. "/foo/bar/baz/".split("/")
  6. # => ["", "foo", "bar", "baz"]
  7. "foo/bar/baz/".split("/")
  8. # => ["foo", "bar", "baz"]
  9.  
  10. # What's the best way to get this result?
  11.  
  12. "/foo/bar/baz".split_alternative("/")
  13. # => ["", "foo", "bar", "baz"]
  14. "/foo/bar/baz/".split_alternative("/")
  15. # => ["", "foo", "bar", "baz", ""]
  16. "foo/bar/baz/".split_alternative("/")
  17. # => ["foo", "bar", "baz", ""]
Add Comment
Please, Sign In to add comment