vote up 0 vote down star

In vbscript, how do you escape the slash in the following string?

bob = "VU administration/front desk"

thanks in advance

flag

50% accept rate
VBScript or PHP? Or printing VBScript from PHP? – Greg Dec 8 '08 at 22:29
what's with the drive-by sniping? Someone's cornflakes get p*ssed on this morning? +1 for yellow cornflakes! – Andrew Rollings Dec 8 '08 at 22:38
You mean the down vote? I suspect that it is because the question is just a smidge confusing as is. – EBGreen Dec 8 '08 at 22:43
+1 : I do not think "confused" warrants a down vote. – Remou Dec 8 '08 at 22:49
Yeah, maybe. I assumed that it was to do with writing out vbscript from php, but you're right... it's clearly ambiguous. – Andrew Rollings Dec 8 '08 at 22:49
show 2 more comments

1 Answer

vote up 5 vote down check

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:

MyString = "He said, ""Here's how you escape a double quote in vbscript.  Slash characters don't mean anything."""

Similarly, in php a backslash escapes itself, but a forward slash doesn't need any special handling.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.