...世界上最受推崇、设计最精良的 C++ 库项目之一。 — Herb Sutter 和 Andrei Alexandrescu, C++ Coding Standards
...世界上最受推崇、设计最精良的 C++ 库项目之一。
boost::xpressive::print — 匹配可打印字符。
// In header: <boost/xpressive/regex_primitives.hpp> unspecified print;
正则表达式特征用于确定哪些字符是可打印的。要匹配任何不可打印的字符,请使用 ~print。
print 在 perl 中等同于 /[[:print:]]/。~print 在 perl 中等同于 /[[:^print:]]/。