fmeobjects.FMERegex.findlist

FMERegex.findlist(inputString)

Return a list yielding match objects over all non-overlapping matches in string. 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[tuple[str, int, int]]

Returns:

A list of match tuples of the form (match, start, end), where match is the string segment matching the regular expression pattern, start is the start index of the string segment, and end is the end index of the string segment.