Is there any way to have multiline plaintext constant literals in C++, ala Perl? Maybe some parsing trick with #includeing a file? I can't think of one, but boy, that would be nice. I know it'll be in C++0x.
|
|
|||||||||
|
|
Well ... Sort of. The easiest is to just use the fact that adjacent string literals are concatenated by the compiler:
The indentation doesn't matter, since it's not inside the quotes. You can also do this, as long as you take care to escape the embedded newline. Failure to do so, like my first answer did, will not compile:
Again, note those backslashes at the end of each line, they must be immediately before the line ends, they are escaping the newline in the source, making it part of the string literal. With this form, you can't indent the text since the indentation would then become part of the string, garbling it with random spaces. |
|||||||||||||
|
|
In C++-0x you will have raw string literals. Sort of like here-text in shells and script languages like Python and Perl and Ruby.
All the spaces and indentation and the newlines in the string are preserved. These can also be utf-8|16|32 or wchar_t (with the usual prefixes). I should point out that the escape sequence, V0G0N, is not actually needed here. Its presence would allow putting )" inside the string. In other words, I could have put
(note extra quotes) and the string above would still be correct. Otherwise I could just as well have used
The parens just inside the quotes are still needed. |
|||||||||
|
|
|||||||
|
|
A probably convenient way to enter multi-line strings is by using macro's. This only works if quotes and parentheses are balanced and it does not contain 'top level' comma's:
Compiled with gcc 4.6 or g++ 4.6, this produces: Note that the |
|||||||||
|
|
You can just do this:
|
|||||
|
|
|
|||
|
|
|
Just to elucidate a bit on @emsr's comment in @unwind's answer, if one is not fortunate enough to have a C++11 compiler (say GCC 4.2.1), and one wants to embed the newlines in the string (either char * or class string), one can write something like this:
Very obvious, true, but @emsr's short comment didn't jump out at me when I read this the first time, so I had to discover this for myself. Hopefully, I've saved someone else a few minutes. |
|||
|
|