Safe Haskell | None |
---|---|
Language | Haskell2010 |
- grep :: IsRegex re ByteString => Verbosity -> re -> FilePath -> IO ()
- data Line = Line {}
- grepLines :: IsRegex re ByteString => re -> FilePath -> IO [Line]
- type GrepScript re s t = [(re, LineNo -> Matches s -> Maybe t)]
- grepScript :: IsRegex re s => GrepScript re s t -> [s] -> [t]
- report :: Verbosity -> [Line] -> String
- data Verbosity
- linesMatched :: Verbosity -> [Line] -> [Line]
- class Replace s => IsRegex re s where
- newtype LineNo = ZeroBasedLineNo {}
- firstLine :: LineNo
- getLineNo :: LineNo -> Int
- lineNo :: Int -> LineNo
- module Text.RE
Documentation
grep :: IsRegex re ByteString => Verbosity -> re -> FilePath -> IO () Source #
operates a bit like classic grep
printing out the lines matched
Line | |
|
grepLines :: IsRegex re ByteString => re -> FilePath -> IO [Line] Source #
returns a Line
for each line in the file enumerating all of the
matches for that line.
type GrepScript re s t = [(re, LineNo -> Matches s -> Maybe t)] Source #
a GrepScript lists RE-action associations, with the first RE to match a line selecting the action to be executed on each line in the file
grepScript :: IsRegex re s => GrepScript re s t -> [s] -> [t] Source #
given a list of lines, apply the GrepScript
to each line of the file
specifies whether to return the linss matched or missed
linesMatched :: Verbosity -> [Line] -> [Line] Source #
given a velocity
flag filter out either the lines matched or not
matched
IsRegex
LineNo
Text.RE
module Text.RE