module Text.Regex.Glob.String
{-# DEPRECATED "use the more general 'Text.Regex.Glob.Generic' instead" #-}
( Regex
, match
, matchNoCase
, parseRegex
, parseRegexNoCase
)
where
import Text.Regex.Glob.Generic (Regex)
import qualified Text.Regex.Glob.Generic as G
match :: String -> String -> Bool
match = G.match
matchNoCase :: String -> String -> Bool
matchNoCase = G.matchNoCase
parseRegex :: String -> Regex
parseRegex = G.parseRegex
parseRegexNoCase :: String -> Regex
parseRegexNoCase = G.parseRegexNoCase