VBScript: Adding quotes to a string
Posted
by sushant
on Stack Overflow
See other posts from Stack Overflow
or by sushant
Published on 2010-05-31T09:19:20Z
Indexed on
2010/05/31
9:32 UTC
Read the original article
Hit count: 233
vbscript
Let's say this is the code:
a="xyz"
g="abcd " & a
So now the value of g
is abcd xyz
. I want quotes around xyz i.e g
should be abcd "xyz"
How do I do that?
© Stack Overflow or respective owner