Escaped characters
From kwiki
[edit]
table
| sequence | meaning |
|---|---|
| \n | linefeed (LF or 0x0A (10) in ASCII) |
| \r | carriage return (CR or 0x0D (13) in ASCII) |
| \t | horizontal tab (HT or 0x09 (9) in ASCII) |
| \\ | backslash |
| \\ | backslash |
| \" | double-quote |
[edit]
examples
MessageBox("Are you sure you want to remove: \"C:\\Windows\" ? ");
//will show: Are you sure you want to remove: "C:\Windows" ?
