mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
| .. | ||
| pcre.vv | ||
| readme.md | ||
| regex_example.v | ||
| regex_with_memoization.v | ||
regex
There are 2 ways to do regex:
- using the native module called
regex. - using an external module called
pcre, which wraps the C library pcre.
Note
You need to first do:
v install pcre, for thepcremodule to work.
You can find examples of both in this directory.