Basic question- how can I use quotation marks within a string for a "say" event?

Super basic question! the obvious workaround is just to draw the quotation marks over another character I won't be using, but I can see that quotation marks are in the default fonts so I'm wondering if I'm missing something here! Thanks much!

Hi Liam! You should be able to escape special characters that you want to actually appear in your string by putting a backslash before them, like so:

say "hello \"friend\""

Which should say hello "friend"

5 Likes

Thank you so much! I really appreciate your help! <3

1 Like