Module

Text.Parsing.String.Alphanumeric

Package
purescript-parsing-alphanumeric
Repository
markfarrell/purescript-parsing-alphanumeric

#lowercase Source

lowercase :: forall m a. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of lowercase alphanumeric characters, or fails otherwise.

#uppercase Source

uppercase :: forall m a. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of uppercase alphanumeric characters, or fails otherwise.

#any Source

any :: forall m a. StringLike a => Monad m => ParserT a m String

Consumes a non-empty string of alphanumeric characters, or fails otherwise.