How can you identify " in a function, as in,
if """==text then
print(" " ")--print the character inside the two quotation marks, only it identifies it as a string
end
[import]uid: 147322 topic_id: 28336 reply_id: 328336[/import]
How can you identify " in a function, as in,
if """==text then
print(" " ")--print the character inside the two quotation marks, only it identifies it as a string
end
[import]uid: 147322 topic_id: 28336 reply_id: 328336[/import]
You need to escape special characters like that.
if "\"" == text then
print(" \" ")
end
More info: http://www.lua.org/pil/2.4.html [import]uid: 84637 topic_id: 28336 reply_id: 114482[/import]