v/examples/regex
spaceface b712af56fd
all: bring back `panic(err.msg)` -> `panic(err)` (#9022)
2021-03-01 00:18:14 +01:00
..
pcre.vv
readme.md
regex_example.v all: bring back `panic(err.msg)` -> `panic(err)` (#9022) 2021-03-01 00:18:14 +01:00
regex_with_memoization.v

readme.md

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.