| Author |
Quotes in strings
|
David Garratt
Ranch Hand
Joined: Aug 08, 2003
Posts: 184
|
|
I want to embed a " character in a string - I must be simple but I can't see how to do it. In VB I would probably use chr$(34). Thanks in advance Dave
|
 |
Scott Dunbar
Ranch Hand
Joined: Sep 23, 2004
Posts: 245
|
|
Escape it: [ October 31, 2005: Message edited by: Scott Dunbar ]
|
<a href="http://forums.hotjoe.com/forums/list.page" target="_blank" rel="nofollow">Java forums using Java software</a> - Come and help get them started.
|
 |
vasu maj
Ranch Hand
Joined: Jul 12, 2001
Posts: 393
|
|
|
You can negate the special nature of the character by adding a backslash in front of it. It will be treated as a regular character and not as a quote.
|
What a wonderful world!
|
 |
Campbell Ritchie
Sheriff
Joined: Oct 13, 2005
Posts: 32689
|
|
Look up the "escape" sequences with a \ in. \" \' \b \n \r \t etc
|
 |
David Garratt
Ranch Hand
Joined: Aug 08, 2003
Posts: 184
|
|
|
Thanks to you all for replying so quickly with exactly what I needed to know.
|
 |
 |
|
|
subject: Quotes in strings
|
|
|