Skip to content

Instantly share code, notes, and snippets.

@freshtonic
Created October 4, 2012 04:37
Show Gist options
  • Select an option

  • Save freshtonic/3831504 to your computer and use it in GitHub Desktop.

Select an option

Save freshtonic/3831504 to your computer and use it in GitHub Desktop.
filename = "some file name.with dots.html.markdown"
parts = f.split(".")
last_index_of_spc = parts.index(parts.select{|s| s =~ / /}.last)
suffix = parts[last_index_of_spc + 1..-1]
prefix = parts[0..last_index_of_spc].join(".")
p [prefix, suffix]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment