blob: 355956482322983fda110209c2f30ba39473ad73 (
plain)
1
2
3
4
5
6
7
8
|
# regex
There are 2 ways to do regex:
a) using the native module called `regex`
b) using an exteranl module called `pcre`, which wraps the C library pcre.
NB: you need to first do: `v install pcre`, for the `pcre` module to work.
You can find examples of both in this directory.
|