regex-0.13.0.0: Text/RE/Tools.hs
module Text.RE.Tools
(
-- * The Tools
-- $tools
-- * Sed
sed
, sed'
-- * Grep
, grep
, Verbosity(..)
, Line(..)
, grepLines
, grepFilter
, GrepScript
, grepWithScript
, report
, linesMatched
-- * Lex
, alex
, alex'
-- * Find
, FindMethods(..)
, findMatches
, findMatches'
-- * IsRegex
, IsRegex(..)
-- * Edit
, Edits(..)
, Edit(..)
, LineEdit(..)
, applyEdits
, applyEdit
, applyLineEdit
-- * LineNo
, LineNo(..)
, firstLine
, getLineNo
, lineNo
-- * Text.RE
, module Text.RE
) where
import Text.RE
import Text.RE.Tools.Edit
import Text.RE.Tools.Find
import Text.RE.Tools.Grep
import Text.RE.Tools.Lex
import Text.RE.Tools.Sed