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

I know some of the escape characters in Java, e.g.

\n : Newline
\r : Carriage return
\t : Tab
\\ : Backslash
...

Is there a complete list somewhere?

share|improve this question

2 Answers

up vote 20 down vote accepted

This is in the Java Language Spec

share|improve this answer
2  
So it is :) Backslashes are very hard to get google to search for, you know. Thanks. – izb Sep 2 '09 at 12:14
But you shouldn't find it too difficult to find them in the language spec... – Tom Hawtin - tackline Sep 2 '09 at 12:42

You can find that here.

  • \t Insert a tab in the text at this point.
  • \b Insert a backspace in the text at this point.
  • \n Insert a newline in the text at this point.
  • \r Insert a carriage return in the text at this point.
  • \f Insert a formfeed in the text at this point.
  • \' Insert a single quote character in the text at this point.
  • \" Insert a double quote character in the text at this point.
  • \\ Insert a backslash character in the text at this point.
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.