escape characters?
BlitzMax Forums/BlitzMax Beginners Area/escape characters?| 
 | ||
| Does anyone know what the escape character is for " or how to remove the " from the beginning and end of a string | 
| 
 | ||
| ~q (or Chr(34)) You can use Replace() to remove the quotes; myString = Replace(myString,"~q","") | 
| 
 | ||
| thanks |