有没有办法在C ++中使用多行纯文本,常量文字,还有Perl?也许是#include
文件的一些解析技巧?我想不出一个,但男孩,那会很好。我知道它将在C ++ 0x中。
答案 0 :(得分:517)
嗯......有点儿。最简单的方法是使用编译器连接相邻字符串文字的事实:
const char *text =
"This text is pretty long, but will be "
"concatenated into just a single string. "
"The disadvantage is that you have to quote "
"each part, and newlines must be literal as "
"usual.";
缩进无关紧要,因为它不在引号内。
您也可以这样做,只要您注意逃避嵌入式换行符。不这样做,就像我的第一个答案那样,不会编译:
const char *text2 = "Here, on the other hand, I've gone crazy \ and really let the literal span several lines, \ without bothering with quoting each line's \ content. This works, but you can't indent.";
再次注意每行末尾的反斜杠,它们必须在行结束之前,它们正在转换源中的换行符,以便所有内容都像新行一样。您没有在反斜杠的位置获取字符串中的换行符。使用这种形式,你显然不能缩进文本,因为缩进将成为字符串的一部分,用随机空格拼写它。
答案 1 :(得分:312)
在C ++ 11中,您有原始字符串文字。类似于shell中的文本和Python和Perl以及Ruby等脚本语言。
const char * vogon_poem = R"V0G0N(
O freddled gruntbuggly thy micturations are to me
As plured gabbleblochits on a lurgid bee.
Groop, I implore thee my foonting turlingdromes.
And hooptiously drangle me with crinkly bindlewurdles,
Or I will rend thee in the gobberwarts with my blurlecruncheon, see if I don't.
(by Prostetnic Vogon Jeltz; see p. 56/57)
)V0G0N";
保留字符串中的所有空格和缩进以及换行符。
这些也可以是utf-8 | 16 | 32或wchar_t(带有通常的前缀)。
我应该指出,这里实际上并不需要转义序列V0G0N。它的存在将允许“在字符串内部。换句话说,我可以放
"(by Prostetnic Vogon Jeltz; see p. 56/57)"
(注意额外的引号)和上面的字符串仍然是正确的。否则我也可以使用
const char * vogon_poem = R"( ... )";
引号内的parens仍然需要。
答案 2 :(得分:25)
#define MULTILINE(...) #__VA_ARGS__
消耗括号之间的所有内容
用一个空格替换任意数量的连续空白字符。
答案 3 :(得分:23)
输入多行字符串的一种可能方便的方法是使用宏。仅当引号和括号平衡且不包含“顶级”逗号时才有效:
#define MULTI_LINE_STRING(a) #a
const char *text = MULTI_LINE_STRING(
Using this trick(,) you don't need to use quotes.
Though newlines and multiple white spaces
will be replaced by a single whitespace.
);
printf("[[%s]]\n",text);
使用gcc 4.6或g ++ 4.6编译,产生:[[Using this trick(,) you don't need to use quotes. Though newlines and multiple white spaces will be replaced by a single whitespace.]]
请注意,,
不能包含在字符串中,除非它包含在括号或引号中。单引号是可能的,但会产生编译器警告。
修改:正如评论中所述,#define MULTI_LINE_STRING(...) #__VA_ARGS__
允许使用,
。
答案 4 :(得分:12)
你可以这样做:
const char *text = "This is my string it is "
"very long";
答案 5 :(得分:9)
由于一点经验值得大量理论,我为MULTILINE
尝试了一个小测试程序:
#define MULTILINE(...) #__VA_ARGS__
const char *mstr[] =
{
MULTILINE(1, 2, 3), // "1, 2, 3"
MULTILINE(1,2,3), // "1,2,3"
MULTILINE(1 , 2 , 3), // "1 , 2 , 3"
MULTILINE( 1 , 2 , 3 ), // "1 , 2 , 3"
MULTILINE((1, 2, 3)), // "(1, 2, 3)"
MULTILINE(1
2
3), // "1 2 3"
MULTILINE(1\n2\n3\n), // "1\n2\n3\n"
MULTILINE(1\n
2\n
3\n), // "1\n 2\n 3\n"
MULTILINE(1, "2" \3) // "1, \"2\" \3"
};
使用cpp -P -std=c++11 filename
编译此片段以重现。
#__VA_ARGS__
背后的技巧是__VA_ARGS__
不处理逗号分隔符。所以你可以把它传递给stringizing运算符。修剪前导和尾随空格,然后将单词之间的空格(包括换行符)压缩为单个空格。括号需要平衡。我认为这些缺点解释了为什么C ++ 11的设计者,尽管#__VA_ARGS__
,却看到了对原始字符串文字的需求。
答案 6 :(得分:7)
在@ unwind的答案中,只是为了阐明@ emsr的评论,如果一个人不幸有一个C ++ 11编译器(比如GCC 4.2.1),并且想要在字符串中嵌入换行符(无论是char *还是类字符串),都可以这样写:
const char *text =
"This text is pretty long, but will be\n"
"concatenated into just a single string.\n"
"The disadvantage is that you have to quote\n"
"each part, and newlines must be literal as\n"
"usual.";
非常明显,这是真的,但@ emsr的简短评论在我第一次看到这篇文章的时候没有跳出来,所以我必须自己发现这个。希望我能在几分钟内拯救别人。
答案 7 :(得分:2)
// C++11.
std::string index_html=R"html(
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>VIPSDK MONITOR</title>
<meta http-equiv="refresh" content="10">
</head>
<style type="text/css">
</style>
</html>
)html";
答案 8 :(得分:0)
您也可以这样做:
const char *longString = R""""(
This is
a very
long
string
)"""";
答案 9 :(得分:-2)
选项1.使用boost库,您可以如下声明字符串
const boost::string_view helpText = "This is very long help text.\n"
"Also more text is here\n"
"And here\n"
// Pass help text here
setHelpText(helpText);
选项2。如果您的项目中没有boost功能,则可以在现代C ++中使用std :: string_view()。