regex-examples-0.2.0.0: Text/RE/TDFA/ByteString.hs
{-# LANGUAGE MultiParamTypeClasses #-}
{-# LANGUAGE FlexibleContexts #-}
{-# LANGUAGE FlexibleInstances #-}
{-# OPTIONS_GHC -fno-warn-orphans #-}
{-# LANGUAGE CPP #-}
#if __GLASGOW_HASKELL__ >= 800
{-# OPTIONS_GHC -fno-warn-redundant-constraints #-}
#endif
module Text.RE.TDFA.ByteString
( (*=~)
, (?=~)
, (=~)
, (=~~)
, module Text.RE
, module Text.RE.TDFA.RE
) where
import qualified Data.ByteString as B
import Text.Regex.Base
import Text.RE
import Text.RE.Internal.AddCaptureNames
import Text.RE.TDFA.RE
import qualified Text.Regex.TDFA as TDFA
-- | find all matches in text
(*=~) :: B.ByteString
-> RE
-> Matches B.ByteString
(*=~) bs rex = addCaptureNamesToMatches (reCaptureNames rex) $ match (reRegex rex) bs
-- | find first matches in text
(?=~) :: B.ByteString
-> RE
-> Match B.ByteString
(?=~) bs rex = addCaptureNamesToMatch (reCaptureNames rex) $ match (reRegex rex) bs
-- | regex-base polymorphic match operator
(=~) :: ( RegexContext TDFA.Regex B.ByteString a
, RegexMaker TDFA.Regex TDFA.CompOption TDFA.ExecOption String
)
=> B.ByteString
-> RE
-> a
(=~) bs rex = match (reRegex rex) bs
-- | regex-base monadic, polymorphic match operator
(=~~) :: ( Monad m
, RegexContext TDFA.Regex B.ByteString a
, RegexMaker TDFA.Regex TDFA.CompOption TDFA.ExecOption String
)
=> B.ByteString
-> RE
-> m a
(=~~) bs rex = matchM (reRegex rex) bs
instance IsRegex RE B.ByteString where
matchOnce = flip (?=~)
matchMany = flip (*=~)
regexSource = reSource