Boost C++ 库

...世界上最受推崇和设计精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu,《C++ 编码规范

函数模板字符串 - Boost C++ 函数库
PrevUpHomeNext

函数模板字符串

boost::parser::string

提要

// In header: <boost/parser/parser.hpp>


template<parsable_range_like R> auto string(R && str);

描述

返回一个解析器,该解析器匹配 str,并将匹配的字符串作为其属性生成。


PrevUpHomeNext