The
pcre vocab implements a simple binding for libpcre, enabling rich regular expression support for Factor applications.
Precompiling and optimizing a regular expression:
<compiled-pcre> ( expr -- compiled-pcre )
ExamplesUSING: pcre ;
"foobar" "\\w" findall
NotesRegular expressions are by default utf8 and unicode aware.