Skip to content

Instantly share code, notes, and snippets.

@scan
Created July 13, 2013 22:07
Show Gist options
  • Save scan/5992409 to your computer and use it in GitHub Desktop.
Save scan/5992409 to your computer and use it in GitHub Desktop.
import Data.List (isSuffixOf)
dropSuffix s str | s `isSuffixOf` str = take ((length str) - (length s)) str
| otherwise = str
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment