Re: Using double quotes in String literal
From: Bryce (Work) (spamtrap_at_berzerker-soft.com)
Date: 12/17/03
- Next message: Bryce (Work): "Re: How to read password protected file?"
- Previous message: Alex Hunsley: "Re: class not found within IE"
- In reply to: Henry R. Whitten Hewitt: "Using double quotes in String literal"
- Next in thread: Nathan Zumwalt: "Re: Using double quotes in String literal"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Wed, 17 Dec 2003 07:32:57 -0500
On Tue, 16 Dec 2003 20:03:11 -0500, "Henry R. Whitten Hewitt"
<mail@analogic.net> wrote:
>In my Applet I would like
>to append a set of double quotes
>one on either side of a String literal
>after the literal has been recieved
>to process.
>So if I have: quotes in String
>
>I want the resulting appendage
>to be " "quotes in String"." (literal minus leading & trailing
>space)
>
>I believ this is done with a special
>character. Can anyone help?
>
>Thanks in advance
quotes can be added like this:
String str = "\""
Note the \ to escape the character...
- Next message: Bryce (Work): "Re: How to read password protected file?"
- Previous message: Alex Hunsley: "Re: class not found within IE"
- In reply to: Henry R. Whitten Hewitt: "Using double quotes in String literal"
- Next in thread: Nathan Zumwalt: "Re: Using double quotes in String literal"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|