aspose file tools
The moose likes Beginning Java and the fly likes String concatenation Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "String concatenation" Watch "String concatenation" New topic
Author

String concatenation

Shawn Miller
Greenhorn

Joined: Jan 14, 2005
Posts: 1
How do I concatenate a double quote (") into a string, if I actually want the double quote to appear on the output.
Andris Jekabsons
Ranch Hand

Joined: Jan 20, 2004
Posts: 82
Just use \ which is the escape character.
System.out.println( "\"my string\"" );
shandilya popuru
Ranch Hand

Joined: Dec 21, 2004
Posts: 95
u can use escape characters use " \" " to print or assign a double quote to a string


sandy
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: String concatenation
 
Similar Threads
I'm lost, need help figuring what todo?
Wrapper Float Constructor
Double.parseDouble(String s) not handling decimal as expected
String conversion in to double
escape character nightmare - please help