Issue
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?
Solution
You can find the full list here.
\tInsert a tab in the text at this point.\bInsert a backspace in the text at this point.\nInsert a newline in the text at this point.\rInsert a carriage return in the text at this point.\fInsert a formfeed in the text at this point.\sInsert a space 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.
Answered By - rtperson
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.