Skip to content

Instantly share code, notes, and snippets.

@itsbth
Last active August 29, 2015 14:13
Show Gist options
  • Select an option

  • Save itsbth/a80b52d4990331f69708 to your computer and use it in GitHub Desktop.

Select an option

Save itsbth/a80b52d4990331f69708 to your computer and use it in GitHub Desktop.
lfn28p3 = (fn) ->
l, ext = fn\match "(.+)%.([^.]+)"
fn = l if l
fn = fn\upper()
fn = fn\gsub "[,[%];=+]", "_"
fn = fn\gsub "[^%a%d_.]", ""
fn = fn\sub(1, 6) .. "~1" if fn\len() > 8
ext = ext\sub(1, 3) if ext\len() > 3
return fn .. "." .. ext
print lfn28p3("Kirill Pokrovsky-Original Sin.mp3")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment