Hi all,
Which is the best way to check if an item or more of one delimited string exist in another?
I'd like to pass 2 delimited strings to a UDF and get back TRUE if at least one item of
the first delimited string exists in the second delimited string.
delStr1="US,FR,DE"
delStr2="GB,DE,CA,PL"
delStr3="CN,DK,IT"
UDF_CheckDelimitedStringItems(delStr1,DelStr2)= TRUE
UDF_CheckDelimitedStringItems(delStr2,DelStr3)= FALSE
Which is the best way to check if an item or more of one delimited string exist in another?
I'd like to pass 2 delimited strings to a UDF and get back TRUE if at least one item of
the first delimited string exists in the second delimited string.
delStr1="US,FR,DE"
delStr2="GB,DE,CA,PL"
delStr3="CN,DK,IT"
UDF_CheckDelimitedStringItems(delStr1,DelStr2)= TRUE
UDF_CheckDelimitedStringItems(delStr2,DelStr3)= FALSE