Module
Text.Parsing.Parser.String
- Package
- purescript-parsing
- Repository
- purescript-contrib/purescript-parsing
Primitive parsers for working with an input stream of type String
.
#StringLike Source
#anyChar Source
anyChar :: forall s m. StringLike s => Monad m => ParserT s m Char
Match any character.
#whiteSpace Source
whiteSpace :: forall s m. StringLike s => Monad m => ParserT s m String
Match zero or more whitespace characters.
#skipSpaces Source
skipSpaces :: forall s m. StringLike s => Monad m => ParserT s m Unit
Skip whitespace characters.