v/examples/regex
Alexander Medvednikov 59ed4be49a all: update copyright year 2022-01-04 12:21:12 +03:00
..
pcre.vv examples: add a template example, update the regex examples (#8829) 2021-02-19 12:39:15 +02:00
readme.md examples: add a template example, update the regex examples (#8829) 2021-02-19 12:39:15 +02:00
regex_example.v all: update copyright year 2022-01-04 12:21:12 +03:00
regex_with_memoization.v examples: add a template example, update the regex examples (#8829) 2021-02-19 12:39:15 +02:00

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.