Copyright | Chris Kuklewicz 2007-2009 shelarcy 2012 |
---|---|
License | BSD-style (see the file LICENSE) |
Maintainer | shelarcy <shelarcy@gmail.com> |
Stability | experimental |
Portability | GHC (uses text) |
Safe Haskell | None |
Language | Haskell98 |
Text.Regex.TDFA.Text
Contents
Description
This modules provides RegexMaker
and RegexLike
instances for using
Text
with the TDFA backend (Text.Regex.TDFA.NewDFA.Engine and
Text.Regex.TDFA.NewDFA.Tester).
This exports instances of the high level API and the medium level
API of compile
,execute
, and regexec
.
Documentation
Instances
RegexOptions Regex CompOption ExecOption | |
data CompOption :: * #
Instances
Read CompOption | |
Show CompOption | |
RegexOptions Regex CompOption ExecOption | |
data ExecOption :: * #
Instances
Read ExecOption | |
Show ExecOption | |
RegexOptions Regex CompOption ExecOption | |
Arguments
:: CompOption | Flags (summed together) |
-> ExecOption | Flags (summed together) |
-> Text | The regular expression to compile |
-> Either String Regex | Returns: the compiled regular expression |