jan tolenaar / kiezellisp / index-of-everything

Name

string:regex-match-all

Usage

builtin-function

Syntax

(string:regex-match-all str pattern)

Description

Compares str to the string or Regex pattern. Returns null if no match. Returns a list of matches otherwise.

make-html > (.regex-match-all "hello, world and girl" "(.)rl")
it: (("orl" "o") ("irl" "i"))