Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 291 Bytes

readme.md

File metadata and controls

10 lines (7 loc) · 291 Bytes

regex

There are 2 ways to do regex:

  1. using the native module called regex.
  2. using an external module called pcre, which wraps the C library pcre.

Note

You need to first do: v install pcre, for the pcre module to work.

You can find examples of both in this directory.