Possible Duplicate:
How would you convert a String to a Java string literal?

Is there a library function that takes a string and converts is into a corresponding string literal? Example:

Please say\ask "What?" three times! -> "Please say\\ask \"What?\" three times!"

link|improve this question

feedback

closed as exact duplicate by Aaron McIver, Bohemian, Andrew Thompson, gbn, Vivin Paliath Jul 21 '11 at 16:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

up vote 6 down vote accepted

I think commons lang StringUtils does that

http://commons.apache.org/lang/api-2.4/org/apache/commons/lang/StringEscapeUtils.html

link|improve this answer
feedback

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