module Text.Inflections.Parse.CamelCase ( parseCamelCase )
where
import Text.Parsec
import Text.Inflections.Parse.Types (Word(..))
import Text.Inflections.Parse.Acronym (acronym)
import Prelude (Char, String, Either, return, ($))
parseCamelCase :: [String] -> String -> Either ParseError [Word]
parseCamelCase acronyms = parse (parser acronyms) "(unknown)"
parser :: Stream s m Char => [String] -> ParsecT s u m [Word]
parser acronyms = do
ws <- many $ choice [ acronym acronyms, word ]
eof
return ws
word :: Stream s m Char => ParsecT s u m Word
word = do
firstChar <- upper <|> lower
restChars <- many lower
return $ Word $ firstChar : restChars