-
-
Save lovesegfault/4e5242468f437d571cd3a2e2968e8cc5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Acronym (abbreviate) where | |
import Data.Text (Text, toUpper, split, concat) | |
import Data.Char (isSpace) | |
abbreviate :: Text -> Text | |
abbreviate = split(\c -> isSpace c || c `elem` [ '-', '_' ]) | |
. Data.Text.concat | |
-- abbreviate = map toUpper | |
-- . concatMap (take 1) | |
-- . split (\c -> isSpace c || c `elem` [ '-', '_' ]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment