findall
relationalai.semantics.std.re
findall(regex: StringValue, value: StringValue) -> tuple[Variable, Variable]Find all non-overlapping matches of the regex in the value.
.. note:: This function is not yet implemented.
Parameters
Section titled “Parameters”
(regexStringValue) - The regular expression pattern.
(valueStringValue) - The string value to search in.
Returns
Section titled “Returns”tuple[Variable,Variable] - A tuple of (position, match)Variables representing all matches. Position isInteger, match isString.
Referenced By
Section titled “Referenced By”RelationalAI Documentation
└── Build With RelationalAI
└── Understand how PyRel works > Use advanced reasoning > Rules-based reasoning
└── Match text with patterns
└── Know current std.re limitations