Escape Characters and Chr()

BlitzMax Forums/BlitzMax Beginners Area/Escape Characters and Chr()

_PJ_(Posted 2015) [#1]
Is there any significant difference between

Local string_var:String="~q"

and

Local string_var:String=Chr(34)


TomToad(Posted 2015) [#2]
~q would be easier to type in a longer string
Local Quote:string = "He said "+Chr(34)+"Hello to all!"+Chr(34)+" Then he left."

vs

Local Quote:String = "He said ~qHello to all!~q Then he left."

Otherwise, no difference.