Skip to content

Instantly share code, notes, and snippets.

@lovesegfault
Created April 22, 2021 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lovesegfault/c858a83b4960a8bbc11ca9c5229b1983 to your computer and use it in GitHub Desktop.
Save lovesegfault/c858a83b4960a8bbc11ca9c5229b1983 to your computer and use it in GitHub Desktop.
module Acronym (abbreviate) where
import Data.Char (isSpace, isUpper)
import Data.Text (Text)
import qualified Data.Text as T
abbreviate :: Text -> Text
abbreviate =
T.toUpper
. T.concat
. map (\w -> T.take 1 w <> (T.filter isUpper . T.dropWhile isUpper) w)
. T.split (\c -> isSpace c || c `elem` ['-', '_'])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment