boost之algorithm

algorithm

boost中将一些小的算法集中到该库,主要是一些字符串处理算法,字符串的方法需引入#include <boost/algorithm/string.hpp>

大小写转换

小写跟大写一样,就不写了:

template<typename WritableRangeT>
inline void to_upper( 
    WritableRangeT& Input, 
    const std::locale& Loc=std::locale()
)

template<typename SequenceT>
inline SequenceT to_upper_copy( 
    const SequenceT& Input, 
    const std::locale& Loc=std::locale()
)

trim

copy后缀版本就不写了:

template<typename SequenceT>
inline void trim_left(SequenceT& Input, const std::locale& Loc=std::locale())

template<typename SequenceT>
inline void trim_right(SequenceT& Input, const std::locale& Loc=std::locale())

template<typename SequenceT>
inline void trim(SequenceT& Input, const std::locale& Loc=std::locale())

split

#include <boost/algorithm/string.hpp>

int main(int argc, char const *argv[])
{
    std::vector<std::string> tokens;
    boost::split(tokens, "12 34", boost::is_any_of(" "), boost::token_compress_on);
    for (auto& t : tokens) {
        std::cout << "[" << t << "]" << std::endl;
    }

    return 0;
}

忽略大小写判断

template<typename Range1T, typename Range2T>
inline bool iequals( 
    const Range1T& Input, 
    const Range2T& Test,
    const std::locale& Loc=std::locale()
)

template<typename Range1T, typename Range2T>
inline bool istarts_with( 
    const Range1T& Input, 
    const Range2T& Test,
    const std::locale& Loc=std::locale()
)

template<typename Range1T, typename Range2T>
inline bool iends_with( 
    const Range1T& Input, 
    const Range2T& Test,
    const std::locale& Loc=std::locale()
)

template<typename Range1T, typename Range2T>
inline bool icontains( 
    const Range1T& Input, 
    const Range2T& Test, 
    const std::locale& Loc=std::locale()
)

replace

template<typename SequenceT, typename Range1T, typename Range2T>
inline void replace_first( 
    SequenceT& Input,
    const Range1T& Search,
    const Range2T& Format )

template<typename SequenceT, typename Range1T, typename Range2T>
inline void replace_last( 
    SequenceT& Input,
    const Range1T& Search,
    const Range2T& Format )

template<typename SequenceT, typename Range1T, typename Range2T>
inline void replace_all( 
    SequenceT& Input,
    const Range1T& Search,
    const Range2T& Format )
posted @   HachikoT  阅读(206)  评论(0编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示