diff options
author | Oleh Prypin <blaxpirit@gmail.com> | 2015-04-14 23:26:53 +0300 |
---|---|---|
committer | Oleh Prypin <blaxpirit@gmail.com> | 2015-04-14 23:26:53 +0300 |
commit | aa327efa98ab90e70b6bd1ee6085fa2e1e4fda46 (patch) | |
tree | 376c742a6b9e870e8e8500c3ec51cbcf75c9d5a9 /lib/impure/re.nim | |
parent | e281d4137025c5ed310c388b05be90578a5c2ff9 (diff) | |
download | Nim-aa327efa98ab90e70b6bd1ee6085fa2e1e4fda46.tar.gz |
Add a hint about NRE to 're' module
Diffstat (limited to 'lib/impure/re.nim')
-rw-r--r-- | lib/impure/re.nim | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/impure/re.nim b/lib/impure/re.nim index 91381bda3..ce49ad186 100644 --- a/lib/impure/re.nim +++ b/lib/impure/re.nim @@ -7,8 +7,11 @@ # distribution, for details about the copyright. # -## Regular expression support for Nim. Consider using the pegs module -## instead. +## Regular expression support for Nim. Consider using the pegs module instead. +## +## There is an alternative regular expressions library with a more unified API: +## `nre <https://github.com/flaviut/nre>`_. It may be added to the standard +## library in the future, instead of `re`. ## ## **Note:** The 're' proc defaults to the **extended regular expression ## syntax** which lets you use whitespace freely to make your regexes readable. |