up vote 0 down vote favorite
share [g+] share [fb]

How do you escape the forward slash character (/) in VBScript? For example, in the following string:

bob = "VU administration/front desk"
link|improve this question

69% 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
feedback

1 Answer

up vote 8 down vote accepted

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|improve this answer
feedback

Your Answer

 
or
required, but never shown

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