escape characters?

BlitzMax Forums/BlitzMax Beginners Area/escape characters?

slenkar(Posted 2008) [#1]
Does anyone know what the escape character is for "
or how to remove the " from the beginning and end of a string


GfK(Posted 2008) [#2]
~q (or Chr(34))

You can use Replace() to remove the quotes; myString = Replace(myString,"~q","")


slenkar(Posted 2008) [#3]
thanks