Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
406 views
in Technique[技术] by (71.8m points)

c++ - How to get string with pattern from std::regex in VC++ 2010

Can I get the string with regular expression from std::regex? Or should I save it somewhere else if I want to use it later?

In boost you can do this:

boost::regex reg("pattern");
string p = reg.str();

or use << operator

cout << reg; will print pattern.

but in std::regex there is no str() or operator<<. Should I save my string somewhere else or I just can't find it?

In debugger I can see what's in std::regex.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I just looked in N3225, section 28.4 (header <regex> synopsis) and indeed, the basic_regex template has no member function str, and there are no operator<< provided.

The paragraph 28.8/2 provides a little insight on this :

Objects of type specialization of basic_regex are responsible for converting the sequence of charT objects to an internal representation. It is not specified what form this representation takes, nor how it is accessed by algorithms that operate on regular expressions.

What I understand is that the standard mandates that basic_regex can be constructed from const charT * but does not require the implementation to keep this string.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...