fmeobjects.FMERegex.search
- FMERegex.search(inputString)
Scan through string looking for the first location where this regular expression produces a match, and return a corresponding match object.
- Parameters:
inputString (str) – Input string to match.
- Return type:
- Returns:
A match tuple 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. None is returned if a match is not found.