fmeobjects.FMERegex.findall

FMERegex.findall(inputString)

Return all non-overlapping matches in string, as a list of str. The string is scanned left-to-right, and matches are returned in the order found.

Parameters:

inputString (str) – Input string to match.

Return type:

list[str]

Returns:

A list of matching strings.