regex-0.2.0.0: Toolkit for regex-base

Safe HaskellNone
LanguageHaskell2010

Text.RE.PCRE.ByteString.Lazy

Synopsis

Documentation

(*=~) :: ByteString -> RE -> Matches ByteString Source

find all matches in text

(?=~) :: ByteString -> RE -> Match ByteString Source

find first matches in text

(=~) :: (RegexContext Regex ByteString a, RegexMaker Regex CompOption ExecOption String) => ByteString -> RE -> a Source

regex-base polymorphic match operator

(=~~) :: (Monad m, RegexContext Regex ByteString a, RegexMaker Regex CompOption ExecOption String) => ByteString -> RE -> m a Source

regex-base monadic, polymorphic match operator

module Text.RE