was hoping you could help me figure out the best way to escape an apostrophe (single-quote) in my VTL syntax. Here is what is working for all of my values that do not have an apostrophe. I have tried to add an additional apostrophe, and tried a backslash in front of the apostrophe - both did not work. Thanks in advance for your help!
#set($a=${ITEM_STAGING.Item_Gift_Wrap_Price})##
#if (${ITEM_STAGING.Department== "MEN'S DEPARTMENT"})##
#set($a="10.50")
$a##
#else##
$a##
#end##
The issue is the apostrophe after the word "MEN".
Thanks in advance for your help - BC