I have this code:
a = "xyz"
g = "abcd " & a
After running it, the value of g
is abcd xyz
.
However, I want quotes around the value of a
in g
. After running the code, g
should be abcd "xyz"
instead.
How can I accomplish this?
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…