The List validation via external file can be
implemented as a part of the field custom logic using python scripts directly in the Designer.
Procedure
In the IQ BotDesigner, left-hand panel, highlight a form field whose
extraction/validation you aim to improve further.
In the middle panel, scroll down to Field options > Logic.
In that Logic section, toggle between
fullscreen and smallscreen for
ease of use.
Add code to modifyIQ Bot's extracted text value. See example
below:
# variable that stores the value: field_value
# import the Python regular expression library, re
import re
# call the regular expression library's method, findall, to extract the date value only
field_value = re.findall(r'\d{2}-\d{2}-\d{4}', field_value)[0]
Select Test Run to test your script and see the results
before vs. after.