Skip to content

Instantly share code, notes, and snippets.

@sporkmonger
Created December 29, 2008 15:41
Show Gist options
  • Save sporkmonger/41289 to your computer and use it in GitHub Desktop.
Save sporkmonger/41289 to your computer and use it in GitHub Desktop.
>> "///".gsub(%r{/*$}, ".")
=> ".."
>> "//".gsub(%r{/*$}, ".")
=> ".."
>> "/".gsub(%r{/*$}, ".")
=> ".."
>> "".gsub(%r{/*$}, ".")
=> "."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment