regex-dfa-0.91: Replaces/Enhances Text.RegexContentsIndex
Text.Regex.DFA.ByteString.Lazy
Description

This modules provides RegexMaker and RegexLike instances for using Lazy with the DFA backend. This module is usually used via import Text.Regex.DFA.

This exports instances of the high level API and the medium level API of compile,execute, and regexec.

Synopsis
data Regex
data CompOption
data ExecOption
compile :: CompOption -> ExecOption -> ByteString -> Either String Regex
execute :: Regex -> ByteString -> Either String (Maybe (Array Int (Int, Int)))
regexec :: Regex -> ByteString -> Either String (Maybe (ByteString, ByteString, ByteString, [ByteString]))
Documentation
data Regex
The DFA backend specific Regex type, used by this module's =~ and =~~ operators.
show/hide Instances
data CompOption
RegexOption control whether the pattern is multiline or case-sensitive like Text.Regex and whether to capture the subgroups (1, 2, etc).
show/hide Instances
data ExecOption
show/hide Instances
compile
:: CompOptionFlags (summed together)
-> ExecOptionFlags (summed together)
-> ByteStringThe regular expression to compile
-> Either String RegexReturns: the compiled regular expression
execute
:: RegexCompiled regular expression
-> ByteStringByteString to match against
-> Either String (Maybe (Array Int (Int, Int)))
regexec
:: RegexCompiled regular expression
-> ByteStringByteString to match against
-> Either String (Maybe (ByteString, ByteString, ByteString, [ByteString]))
Produced by Haddock version 0.8