1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

[C++11] 生文字列リテラル(Raw String Literals)の使用方法メモ

Last updated at Posted at 2017-03-02

生文字列リテラル(Raw String Literals)の使用方法メモ

コード見たほうが早いと思うのでサンプルコード載せます。(Qiitaのシンタックスハイライト対応してないですね・・・)

test_raw_literals.cpp
# include <cstdio>

static const char* raw_string_literals1 = R"(hoge)";
static const char* raw_string_literals2 = R"("foo", "bar")";
static const char* raw_string_literals3 = R"({
    "object" : {
        "foo" : 1,
        "bar" : "hoge"
    }
})";
static const char* raw_string_literals4 = R"*("(cdr '(1 2 3 4))" => "(2 3 4)")*";

int main(int argc, char const* argv[])
{
	puts("case 1: 通常ケース");
	puts(raw_string_literals1);
	puts("case 2: ダブルコーテーションを含むケース");
	puts(raw_string_literals2);
	puts("case 3: 改行を含むケース");
	puts(raw_string_literals3);
	puts("case 4: 丸括弧とダブルコーテーションが隣接する文字があるケース");
	puts(raw_string_literals4);
	return 0;
}
ビルドと実行例
$ g++ -std=c++11 test_raw_literals.cpp && ./a.out
case 1: 通常ケース
hoge
case 2: ダブルコーテーションを含むケース
"foo", "bar"
case 3: 改行を含むケース
{
    "object" : {
        "foo" : 1,
        "bar" : "hoge"
    }
}
case 4: 丸括弧とダブルコーテーションが隣接する文字があるケース
"(cdr '(1 2 3 4))" => "(2 3 4)"

シンタックスハイライトが分かりにくいのでVimでのキャプチャも載せます。

無題.png

参考

生文字列リテラル - cpprefjp C++日本語リファレンス

1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?