File: IsRegex.hs

package info (click to toggle)
haskell-regex 1.1.0.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 424 kB
  • sloc: haskell: 4,533; makefile: 3
file content (17 lines) | stat: -rw-r--r-- 421 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
module Text.RE.Tools.IsRegex
  (
  -- * IsRegex
  -- $tutorial
    IsRegex(..)
  , SearchReplace(..)
  , searchReplaceAll
  , searchReplaceFirst
  ) where

import Text.RE.ZeInternals.Types.IsRegex

-- $tutorial
-- The @IsRegex@ class abstracts over each regex back end and the
-- text types they support allowing general regex tools to constructed.
--
-- See the Regex Tools tutorial at http://re-tutorial-tools.regex.uk