mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
291 B
291 B
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.
Note
You need to first do:
v install pcre
, for thepcre
module to work.
You can find examples of both in this directory.