Skip to content

Instantly share code, notes, and snippets.

@radar
Forked from freshtonic/gist:3831504
Created October 4, 2012 04:39
Show Gist options
  • Select an option

  • Save radar/3831512 to your computer and use it in GitHub Desktop.

Select an option

Save radar/3831512 to your computer and use it in GitHub Desktop.
filename = "a.b c.a"
parts = filename.split(".")
last_index_of_space = parts.index(parts.grep(/ /).last)
suffix = parts[last_index_of_space + 1..-1]
prefix = parts[0..last_index_of_space].join(".")
p [prefix, suffix]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment