C++11 raw strings literals tutorial

Now, that I have a working system that can compile both regular expressions and raw strings literals, it is time to show you how you can further simplify the examples from the regex tutorial.

Basically a raw string literal is a string in which the escape characters (like \n \t or \" ) of C++ are not processed. A raw string literal starts with R"( and ends in )", let's see an in an example the difference between a normal string and a raw string in C++:

 1 #include <iostream>
 2 #include <string>
 3 
 4 using namespace std;
 5 
 6 int main()
 7 {
 8     string normal_str="First line.\nSecond line.\nEnd of message.\n";
 9     string raw_str=R"(First line.\nSecond line.\nEnd of message.\n)";
10     cout<<normal_str<<endl;
11     cout<<raw_str<<endl;
12     return(0);
13 }

normal_str will be processed at compilation time so you will see three lines of text and an empty line. In the case of the variable raw_str which is a raw string literal, the compiler will not process the escape characters, so you will see a single line of text with a content identical with what you have in the C++ source code.

If you compile and run the above code, saved in a file named "raw_string_00.cpp", this is what you should see:

1 sol@sol:~$ clang++ -std=c++11 -stdlib=libc++ raw_string_00.cpp
2 sol@sol:~$ ./a.out
3 First line.
4 Second line.
5 End of message.
6 
7 First line.\nSecond line.\nEnd of message.\n
8 sol@sol:~$

If you don't have clang and libc++ on your machine you could also compile the above code with g++-4.6.1, in this case you would use this line for compiling the code:

1 g++ -std=c++0x raw_string_00.cpp

or, for gcc-4.7 and up:

1 g++ -std=c++11 raw_string_00.cpp

The above piece can not be compiled with Visual Studio 2010 which lack support for raw string literals at the time of this writing.

A first application of the concept of a raw string is in simplifying the syntax of the regular expressions. The coder can put his effort in writing a regular expression conformal to the ECMAScript standard and not in ensuring that his regular expression will be correctly processed by the compiler.

Take as an example the regular expression used in the regex tutorial for checking if the user input is an integer number. Without raw strings this is how the code should look (and if you want to use it with VS 2010 you must keep it this way):

1 regex integer("(\\+|-)?[[:digit:]]+");

Using a raw string we can simplify the above piece of code, we can get rid of the escaping characters:

1 string raw_pattern=R"((\+|-)?[[:digit:]]+)";
2 regex integer(raw_pattern);

or, a more condensed version:

1 regex integer(R"((\+|-)?[[:digit:]]+)");

A pattern for matching a real numbers, see the regex tutorial, can be written this way:

 1 ...
 2     string input;
 3     regex rr(R"(((\+|-)?[[:digit:]]+)(\.(([[:digit:]]+)?))?((e|E)((\+|-)?)[[:digit:]]+)?)");
 4     cout<<"Give me a real number!"<<endl;
 5     cin>>input;
 6     if(regex_match(input,rr))
 7       cout<<"float"<<endl;
 8     else
 9     {
10       cout<<"Invalid input"<<endl;
11     }
12 ...

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值