Hey guys. I have a, what I guess is a, simple question. How would I use the character " in a string?
This:
<img src="http://dl.dropbox.com/u/2776515/construct%20-%20string%20problem.png">
Outputs (for example):
start /wait cmd /C slet_bruger_auto lbd[/code:2oz2y8gh] But I want this output: [code:2oz2y8gh]start "lbd" /wait cmd /C slet_bruger_auto "lbd"[/code:2oz2y8gh]
Double your double quotes.
"Hello" obviously just gives you: Hello
"""Hello""" would give you the output: "Hello"
"Hello ""Friend""" would give you the output: Hello "Friend"
Develop games in your browser. Powerful, performant & highly capable.
ah I knew it was something simple. Thank you
I already tried doing this: \" because that's how I do it in PHP. It changed the color of the string but still didn't work.