Safe Haskell | None |
---|---|
Language | Haskell2010 |
Synopsis
- data Regex
- data RegexException
- data RE = RE {}
- compileRegex :: Bool -> ByteString -> Regex
- matchRegex :: Regex -> ByteString -> Maybe [ByteString]
- convertOctalEscapes :: String -> String
Documentation
A compiled regular expression
Instances
RegexOptions Regex CompOption ExecOption | |
Defined in Text.Regex.PCRE.Wrap defaultCompOpt :: CompOption # defaultExecOpt :: ExecOption # setExecOpts :: ExecOption -> Regex -> Regex # getExecOpts :: Regex -> ExecOption # |
data RegexException Source #
An exception in compiling or executing a regex.
Instances
Show RegexException Source # | |
Defined in Skylighting.Regex showsPrec :: Int -> RegexException -> ShowS # show :: RegexException -> String # showList :: [RegexException] -> ShowS # | |
Generic RegexException Source # | |
Defined in Skylighting.Regex type Rep RegexException :: * -> * # from :: RegexException -> Rep RegexException x # to :: Rep RegexException x -> RegexException # | |
Exception RegexException Source # | |
Defined in Skylighting.Regex | |
type Rep RegexException Source # | |
Defined in Skylighting.Regex type Rep RegexException = D1 (MetaData "RegexException" "Skylighting.Regex" "skylighting-core-0.7.3-LGXBFwTVgCII3Q2LkS93jG" True) (C1 (MetaCons "RegexException" PrefixI False) (S1 (MetaSel (Nothing :: Maybe Symbol) NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 String))) |
A representation of a regular expression.
Instances
Eq RE Source # | |
Data RE Source # | |
Defined in Skylighting.Regex gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RE -> c RE # gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RE # dataTypeOf :: RE -> DataType # dataCast1 :: Typeable t => (forall d. Data d => c (t d)) -> Maybe (c RE) # dataCast2 :: Typeable t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RE) # gmapT :: (forall b. Data b => b -> b) -> RE -> RE # gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RE -> r # gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RE -> r # gmapQ :: (forall d. Data d => d -> u) -> RE -> [u] # gmapQi :: Int -> (forall d. Data d => d -> u) -> RE -> u # gmapM :: Monad m => (forall d. Data d => d -> m d) -> RE -> m RE # gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RE -> m RE # gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RE -> m RE # | |
Ord RE Source # | |
Read RE Source # | |
Show RE Source # | |
Generic RE Source # | |
ToJSON RE Source # | |
Defined in Skylighting.Regex | |
FromJSON RE Source # | |
Binary RE Source # | |
type Rep RE Source # | |
Defined in Skylighting.Regex type Rep RE = D1 (MetaData "RE" "Skylighting.Regex" "skylighting-core-0.7.3-LGXBFwTVgCII3Q2LkS93jG" False) (C1 (MetaCons "RE" PrefixI True) (S1 (MetaSel (Just "reString") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 ByteString) :*: S1 (MetaSel (Just "reCaseSensitive") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 Bool))) |
compileRegex :: Bool -> ByteString -> Regex Source #
Compile a PCRE regex. If the first parameter is True, the regex is
case-sensitive, otherwise caseless. The regex is compiled from
a bytestring interpreted as UTF-8. If the regex cannot be compiled,
a RegexException
is thrown.
matchRegex :: Regex -> ByteString -> Maybe [ByteString] Source #
Match a Regex
against a bytestring. Returns Nothing
if
no match, otherwise Just
a nonempty list of bytestrings. The first
bytestring in the list is the match, the others the captures, if any.
If there are errors in executing the regex, a RegexException
is
thrown.
convertOctalEscapes :: String -> String Source #
Convert octal escapes to the form pcre wants. Note: need at least pcre 8.34 for the form o{dddd}. So we prefer ddd or x{...}.