I think this question should be easy to answer
In every language I know, if you need to include certain characters (for example, a quotation mark) in a string, you must use an escape sequence before that character so the parser doesn't confuse it with some keyword/symbol.
Here is an example:
a_new_string = "John said, \"How are you?\"";
The backslashes let the parser know that the following character (") should be considered part of the string, and not part of the line's syntax.
I tried using the same logic / escape character in SAS, and it does not appear to work. If anyone could inform me how to use special characters in a string (like a double or single quotation mark), I would greatly appreciate it!!
Thank you