Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Say you have a String literal with a lot of quotation marks inside it. You could escape them all, but it's a pain, and difficult to read.

In some languages, you can just do this:

foo = '"Hello, World"';

In Java, however, '' is used for chars, so you can't use it for Strings this way. Some languages have syntax to work around this. For example, in python, you can do this:

"""A pretty "convenient" string"""

Does Java have anything similar?

share|improve this question
This answer shows how to paste multi-line escaped strings in Eclispe. – Jeff Axelrod Mar 9 '12 at 18:42

4 Answers

up vote 13 down vote accepted

The answer is no, and the proof resides in the Java Language Specification:

  StringLiteral:
   "StringCharacters"

  StringCharacters:
   StringCharacter
   | StringCharacters StringCharacter

  StringCharacter:
   InputCharacter but not " or \
   | EscapeSequence

As you can see a StringLiteral can just be bound by " and cannot contain special character without escapes..

A side note: you can embed Groovy inside your project, this will extend the syntax of Java allowing you to use '''multi line string ''', ' "string with single quotes" ' and also "string with ${variable}".

share|improve this answer

No, and I've always been annoyed by the lack of different string-literal syntaxes in Java.

Here's a trick I've used from time to time:

String myString = "using `backticks` instead of quotes".replace('`', '"');

I mainly only do something like that for a static field. Since it's static the string-replace code gets called once, upon initialization of the class. So the runtime performance penalty is practically nonexistent, and it makes the code considerably more legible.

share|improve this answer
Nice trick! I think I'll start using that. – Matthew Jun 13 '10 at 22:57
wouldn't you need to use replaceAll? – landon9720 Jun 15 '12 at 3:58
1  
@landon9720 No, .replace replaces all occurrences of a character/character sequence with another character/character sequence. .replaceAll uses regex. – abelito Jul 16 '12 at 20:54

Simple answer: No.

For longer strings that must be escaped, I usually read them from some external resource.

share|improve this answer

you can also use StringEscapeUtils from apache commons

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.