You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@tomcat.apache.org by Magnus Jansson <Ad...@vaddo.fhsk.se> on 2001/09/19 14:14:52 UTC

Insert special chars in stringbuffer

Hi! I have a StringBuffer object and want to append a " character how do I do?


Re: Insert special chars in stringbuffer

Posted by Dmitri Colebatch <di...@bigpond.net.au>.
StringBuffer buf = new StringBuffer();
buf.append('\"');

hth,
dim

On Wed, 19 Sep 2001, Magnus Jansson wrote:

> Hi! I have a StringBuffer object and want to append a " character how do I do?
> 
>