I'm trying to write a string \n in a text file. But the result in the text file is a newline. I know that the \n represents a newline. But in my case, i really need to see the String \n, not the newline. How can I solve this? Thanks
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
The \ character escapes the next character, as you say \n will create a newline. If you wish to output an actual \, you need to write:
That way the first slash escapes the second slash, generating an actual slash rather than escaping the n. |
||||
|
|
|
Use |
|||
|
|
|
you have to escape the backslash, so double it:
|
|||||
|
|
Do you mean
instead of
|
|||
|
|
|
You need to escape the |
|||
|
|
|
What you want is to print two characters, namely |
|||
|
|