Skip to content

findall

relationalai.semantics.std.re
findall(regex: StringValue, value: StringValue)

Find all non-overlapping matches of the regex in the value.

  • regex

    (StringValue) - The regular expression pattern.
  • value

    (StringValue) - The string value to search in.
  • tuple[Variable, Variable] - A tuple of (position, match) Variables representing all matches. Position is Integer, match is String.