Skip to content

Latest commit

 

History

History
138 lines (87 loc) · 2.88 KB

File metadata and controls

138 lines (87 loc) · 2.88 KB

Module Documentation

Module Data.String.Regex

Wraps Javascript's RegExp object that enables matching strings with patternes defined by regular expressions. For details of the underlying implementation, see RegExp Reference at MDN.

Regex

data Regex :: *

Wraps Javascript RegExp objects.

showRegex

instance showRegex :: Show Regex

RegexFlags

type RegexFlags = { unicode :: Boolean, sticky :: Boolean, multiline :: Boolean, ignoreCase :: Boolean, global :: Boolean }

Flags that control matching.

noFlags

noFlags :: RegexFlags

All flags set to false.

regex

regex :: String -> RegexFlags -> Regex

Constructs a Regex from a pattern string and flags.

source

source :: Regex -> String

Returns the pattern string used to construct the given Regex.

flags

flags :: Regex -> RegexFlags

Returns the RegexFlags used to construct the given Regex.

renderFlags

renderFlags :: RegexFlags -> String

Returns the string representation of the given RegexFlags.

parseFlags

parseFlags :: String -> RegexFlags

Parses the string representation of RegexFlags.

test

test :: Regex -> String -> Boolean

Returns true if the Regex matches the string.

match

match :: Regex -> String -> Maybe [Maybe String]

Matches the string against the Regex and returns an array of matches if there were any. Each match has type Maybe String, where Nothing represents an unmatched optional capturing group. See reference.

replace

replace :: Regex -> String -> String -> String

Replaces occurences of the Regex with the first string. The replacement string can include special replacement patterns escaped with "$". See reference.

replace'

replace' :: Regex -> (String -> [String] -> String) -> String -> String

Transforms occurences of the Regex using a function of the matched substring and a list of submatch strings. See the reference.

search

search :: Regex -> String -> Int

Returns the index of the first match of the Regex in the string, or -1 if there is no match.

split

split :: Regex -> String -> [String]

Split the string into an array of substrings along occurences of the Regex.