Back

Explore Courses Blog Tutorials Interview Questions
0 votes
2 views
in Java by (9.5k points)

These are the escape characters in JAVA, I know. 

For example:

 

\n : Newline

\r : Carriage return

\t : Tab

\\ : Backslash

Can anyone tell me the complete list of escape characters? 

1 Answer

0 votes
by (19.7k points)

Go to this link  here to get the full list of escape characters. 

 

I’m mentioning it here as well, 

  • \t Insert a tab in the text at this point.

  • \b Insert a backspace in the text at this point.

  • \n Insert a new line in the text at this point.

  • \r Insert a carriage return in the text at this point.

  • \f Insert a form feed 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.

If you want to learn more about Java? Check this out: Java course on Intellipaat    

 

 

Related questions

0 votes
1 answer
asked Jul 22, 2019 in Salesforce by Kartik12234 (11.9k points)
0 votes
1 answer
0 votes
1 answer
0 votes
1 answer

Browse Categories

...