string:regex-match
builtin-function
(string:regex-match str pattern)
Compares str to the string or Regex pattern. Returns null if no match. Returns the first match otherwise.
str
pattern
make-html > (.regex-match "hello, world" "(.)rl") it: ("orl" "o")