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

I have a variable

char* x = "asd\nqwe\n ... "

and I want to print it with newlines printed as newlines not backslash n. Is it possible?

share|improve this question
if nought else works, you can replace the '\n' with '\x0a' - this will the linefeed char directly. – slashmais Oct 7 '09 at 10:35
@slashmais: This will still show up as \n in gdb output – ezpz Oct 7 '09 at 10:55
Actually, I came here for a way to PRINT the \n >.> .. I was able to do this: print (char*)[nsstring cString] – Mazyod Mar 19 '12 at 9:59

1 Answer

up vote 25 down vote accepted

From within the debugger you can execute commands. Just call printf

(gdb) call printf("%s", x)
asd
qwe
...
(gdb)

Update: Rather than calling printf, why not just use the gdb printf command?

(gdb) printf "%s", x
asd
qwe
...
(gdb)
share|improve this answer
I can't use stdout or stderr because these channels are attached to other program. – Łukasz Lew Oct 7 '09 at 10:37
Splendid. Thanks. – Łukasz Lew Oct 7 '09 at 11:00
2  
Note that it's important to terminate the printf command with a /n if your char* doesn't already end with one. – Ben Flynn Sep 12 '12 at 23:24

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.