I have a variable [ITEM_NAME] that stores an item name from a shopping cart. I want to check whether the value in [ITEM_NAME] is like one of the following strings:
"CHICAGO NEW"
"CHICAGO OLD"
"CHICAGO TEXT"
"CHICAGO PURE"
In pseudocode:
if ([ITEM_NAME].contains("CHICAGO"))
I want a condition that will be satisfied for all strings that start with "CHICAGO".
 
     
     
    