string:regex-match-all
builtin-function
(string:regex-match-all str pattern)
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"))