Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ouwen010Hi, I'm looking for a python based node simular to the Lookup node with a small difference. The Lookup data can contain wildcards like an "*" asterix to indicate any value. I need this for a project where we have discrepancies to validate. This validation is based on a table containing the most important fields. To limit the different combinations wildcards are used when all values for a field are part of the match.
Example lookup data table:
BSSID,C_Region,C_Status,M_Status,N_Region,N_Status ,Result
12,Local,Used,,Local,*,False positive
12,Local,Port_Out,,Local,212,Not Valid
The data input example (limited down here to the same fields):
BSSID,C_Region,C_Status,M_Status,N_Region,N_Status
12,Local,Used,Port_Out,Local,211
12,Local,Used,,Local,211
12,Local,Used,,Local,213
12,Local,Port_Out,,Local,214
12,Local,Port_Out,,Local,212