In vbscript, how do you escape the slash in the following string?
bob = "VU administration/front desk"
thanks in advance
|
|
|||||||||||
|
|
|
You don't escape it: it doesn't mean anything special in php or vbscript, and therefore doesn't need to be escaped. The only character you need to escape in vbscript is the double quote, which escapes itself:
Similarly, in php a backslash escapes itself, but a forward slash doesn't need any special handling. |
||
|
|