Boost C++ 库

...世界上最受推崇、设计最精良的 C++ 库项目之一。 Herb SutterAndrei Alexandrescu, C++ Coding Standards

全局打印 - Boost C++ 函数库
PrevUpHomeNext

全局打印

boost::xpressive::print — 匹配可打印字符。

提要

// In header: <boost/xpressive/regex_primitives.hpp>

unspecified print;

描述

正则表达式特征用于确定哪些字符是可打印的。要匹配任何不可打印的字符,请使用 ~print。

[Important] 重要提示

print 在 perl 中等同于 /[[:print:]]/。~print 在 perl 中等同于 /[[:^print:]]/。


PrevUpHomeNext