vote up 1 vote down star

How can you put escape characters (like newline character -- \n) to a CString?

flag
no. i want to insert a newline using /n – lane Mar 16 at 18:17
So you want a string "Alpha Beta" where Alpha is on one line and Beta is on the next? What's the benefit of this (what are you trying to accomplish)? – Perchik Mar 16 at 18:21

6 Answers

vote up 0 vote down

Do you mean an unescaped version? If so then just escape the escape

CString("\\n");
link|flag
not that. "\n" -if I do that it appears as a garbage character. – lane Mar 16 at 18:15
vote up 0 vote down

The newline character is '\n' in single quotes. Just add that to your cstring.

link|flag
\n becomes a box (garbage character). it doesn't insert a new line. – lane Mar 16 at 18:19
vote up 4 vote down

I think your problem is not inserting a newline in the CString, but in the method that you are using to display the string

link|flag
vote up 4 vote down

\n becomes a box (garbage character). it doesn't insert a new line.

Is this what you find in the debugger? If so, this is okay. The newline character has a hex value of 0xA or 10 in decimal. Since this is a non-printable character, that's what the debugger will show you.

Apart from that, if you are using notepad to view the output, it may not come out right. Try "\r\n" in order to get notepad to split correctly.

link|flag
vote up 1 vote down

When I was a younger coder I had the same problem when writing to a .txt file on windows and opening it in notepad. The newline characters show up as these squares. If you want the appearance of newlines in notepad use "\r". This isn't really a solution, but I have an intuition that this is your problem...

link|flag
vote up 0 vote down

CString strMessage = "";

strMessage.Format("Alpha \n Beta");

"\n" appears as box character in debugger but while displaying on the UI it displays properly.

link|flag

Your Answer

Get an OpenID
or

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