IQ BotDesigner の左パネルで、抽出/検証を改善させるフォーム フィールドを強調表示します。
中央のパネルで、[フィールド オプション] > [ロジック] までスクロールします。
使いやすくなるように [ロジック] セクションで [全画面] と [全画面解除] を切り替えます。
コードを追加して、IQ Bot の抽出済みテキスト値を変更します。次の例を参照します。
# 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]