Hello, is there an escape character in GuidedTrack? I need to use double quotation marks inside a string variable. Thanks.
Hi Ali, while there is not a escape character to enter quotation marks, I do it by URL-decoding the quotation marks character and saving it into a variable:
>>quotes = "%22".decode("URL") >>text = "This is a text with a word in {quotes}quotes{quotes}" {text}