mirror of
https://github.com/nim-lang/Nim.git
synced 2026-05-25 06:18:16 +00:00
std/nre2 is implemented using https://github.com/nitely/nim-regex. std/nre2 has almost same features as std/nre but some regular expressions supported by std/nre are not supported. The syntax of regular expressions of Nim Regex is explained in: https://nitely.github.io/nim-regex/regex.html
4 lines
180 B
Nim
4 lines
180 B
Nim
# std/nre2 requires nim-regex and it requires nim-unicodedb
|
|
exec("nimble --nimbleDir:build/deps install unicodedb@#head")
|
|
exec("nimble --nimbleDir:build/deps install regex@#head")
|