...世界上最受推崇和设计精良的 C++ 库项目之一。 — Herb Sutter 和 Andrei Alexandrescu,《C++ 编码规范
...世界上最受推崇和设计精良的 C++ 库项目之一。
boost::algorithm::to_lower — 转换为小写。
// In header: <boost/algorithm/string/case_conv.hpp> template<typename WritableRangeT> void to_lower(WritableRangeT & Input, const std::locale & Loc = std::locale());
输入序列的每个元素都会转换为小写。输入序列会就地修改。
参数
输入
一个范围
位置
用于转换的区域设置