User Defined Language Escape Character
-
I’m trying to create a UDL, but one of the keywords is
Let's make a game!
The problem is that in order to make all of these words a single keyword, I have to surround them with single quotes, which are included in the keyword. Is there a way to escape the single quote in “Let’s”, such as a “Let\'s” or “Let's”? (Both display as Let’s and Let’s)
I also hope the “!” won’t affect it in any way, but I fear it may be affecting it somewhat as well.
-
@Anthony-Short
I think I figured it out. I simply used double quotation marks and coded it as follows in the 1st group."Let's make a game!"
No need for “'” or “\',” just “Let’s.”
Hopefully this topic helps somebody else out!