We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9a1fc6 commit 02376e8Copy full SHA for 02376e8
README.md
@@ -174,6 +174,10 @@
174
175
match :: Regex -> String -> Maybe [String]
176
177
+#### `noFlags`
178
+
179
+ noFlags :: RegexFlags
180
181
#### `parseFlags`
182
183
parseFlags :: String -> RegexFlags
src/Data/String/Regex.purs
@@ -1,17 +1,18 @@
1
-module Data.String.Regex (
2
- Regex(..),
3
- RegexFlags(..),
4
- regex,
5
- source,
6
- flags,
7
- renderFlags,
8
- parseFlags,
9
- test,
10
- match,
11
- replace,
12
- replace',
13
- search,
14
- split
+module Data.String.Regex
+ ( Regex(..)
+ , RegexFlags(..)
+ , regex
+ , source
+ , flags
+ , renderFlags
+ , parseFlags
+ , test
+ , match
+ , replace
+ , replace'
+ , search
+ , split
15
+ , noFlags
16
) where
17
18
import Data.Function
0 commit comments