Reputation: 17
I am trying to make this string
string := " %%i IN (`"
but if i try and test i with msgbox it doesn't make the "`" symbol
msgbox,%line33%
Upvotes: 0
Views: 1993
Reputation: 3982
Escape your symbol (backtick) by prefixing it with a backtick (which happens to be the default escape character):
string := " %%i IN (``"
Refer to #EscapeChar for details.
Upvotes: 2