What's the best way to use regular expressions with options (flags) in Haskell
I use
Text.Regex.PCRE
The documentation lists a few interesting options like compCaseless, compUTF8, ... But I don't know how to use them with (=~)
|
What's the best way to use regular expressions with options (flags) in Haskell I use
The documentation lists a few interesting options like compCaseless, compUTF8, ... But I don't know how to use them with (=~) |
|||
|
|
|
All the Now, you've probably been started off from the basic
To use
A valid instance of all these classes (for example,
A valid instance of all these classes (for example, Put these together and it's pretty obvious that
and also that You could make your own
which could be used like
or overwrite
or you could just use |
|||||||||||
|
|
I believe cannot use (=~) if you wish to use Something like this work:
The follow two articles should assist you: |
||||
|
|
|
I don't know anything about Haskell, but if you're using a regex library based on PCRE, then you can use mode modifiers inside the regular expression. To match "caseless" in a case insensitive fashion, you can use this regex in PCRE:
The mode modifier (?i) overrides any case sensitivity or case insensitivity option that was set outside the regular expression. It also works with operators that don't allow you to set any options. Similarly, (?s) turns on "single line mode" which makes the dot match line breaks, (?m) turns on "multi line mode" which makes ^ and $ match at line breaks, and (?x) turns on free-spacing mode (unescaped spaces and line breaks outside character classes are insignificant). You can combine the letters. (?ismx) turns on everything. A hyphen turns off options. (?-i) makes the regex case sensitive. (?x-i) starts a free-spacing case sensitive regex. |
|||
|