结合Boost官网
由于这一章内容过多,我将采用四个小章,精简原文四个小部分内容。
第四小章还包含了题目及讲解。
区域设置:
setlocale(LC_ALL,“”)
locale::global(std::locale("German")); //设置全局区域德语环境
一、将字符串所有字符转成大写
boost::algorithm::to_upper("")//自身转化
boost::algorithm::to_upper_copy("")//返回转化的结果,自身不转化
转成小写
boost::algorithm::to_lower("")
boost::algorithm::to_lower_copy("")
二、删除特定字符串
boost::algorithm::erase_first_copy(s,"") //从s删除第一个匹配的字符串
boost::algorithm::erase_nth_copy(s,"",n) //从s删除第n个匹配的字符串
boost::algorithm::erase_last_copy(s, "") //从s删除最后匹配的字符串
boost::algorithm::erase_all_copy(s, "") //从s删除所有匹配的字符串
boost::algorithm::erase_head_copy(s, n) //从s删除前n个字符
boost::algorithm::erase_tail_copy(s, n) //从s删除后n个字符
三、查找特定字符串
与二相同使用方法,将erase替换成find即可。
四、字符串迭代器
存储字符串每个字符。
boost::iterator_range r = boost::algorithm::find_first(s,"");
for_each(r.begin(), r.end(), [](char c){cout << c << endl;});
五、添加字符串
vector v;
v.push_back("hello");
v.push_back("world");
boost::algorithm::join(v, ""); //根据第二个参数将这些字符串连接起来。
六、替换字符串
boost::algorithm::replace_first_copy(s,"","") //从s替换第一个匹配的字符串成第三个参数
boost::algorithm::replace_nth_copy(s,"",n,"") //从s替换第n个匹配的字符串成第四个参数
boost::algorithm::replace_last_copy(s, "","") //从s替换最后匹配的字符串成第三个参数
boost::algorithm::replace_all_copy(s, "","") //从s替换所有匹配的字符串成第三个参数
boost::algorithm::replace_head_copy(s, n,"") //从s替换前n个字符成第三个参数
boost::algorithm::replace_tail_copy(s, n,"") //从s替换后n个字符成第三个参数
七、裁剪字符串
自动裁剪:(空格或者结束符)
boost::algorithm::trim_left_copy(s)//去除左边
boost::algorithm::trim_right_copy(s)//去除右边
boost::algorithm::trim_copy(s)//上两个效果合
特定裁剪:指定字符串裁剪
boost::algorithm::trim_left_copy_if(s, boost::algorithm::is_any_of(""))//去除左边
boost::algorithm::trim_right_copy_if(s, boost::algorithm::is_any_of(""))//去除右边
boost::algorithm::trim_copy_if(s, boost::algorithm::is_any_of(""))//上两个效果合
函数boost::algorithm::is_digit()
返回的谓词在字符为数字时返回布尔值 。
裁剪谓词是数字的字符串:
boost::algorithm::trim_left_copy_if(s, boost::algorithm::is_digit())//去除左边
boost::algorithm::trim_right_copy_if(s, boost::algorithm::is_digit())//去除右边
boost::algorithm::trim_copy_if(s, boost::algorithm::is_digit())//上两个效果合
八、比较字符串
boost::algorithm::starts_with(s, "")//比较开头
boost::algorithm::ends_with(s, "")//比较结尾
boost::algorithm::contains(s,"" )//比较是否存在
boost::algorithm::lexicographical_compare(s,"")/比较区间是否小于第二个参数
返回为bool型
九、分割字符串
boost::algorithm::split(s, 谓词);
谓词:判定分割点
例如:boost:algorithm::is_space() //在每个空格字符处分割字符串
十、大小写忽略函数
一般是上述函数原型前有i区分
例如 boost::algorithm::erase_all_copy() 对应 boost::algorithm::ierase_all_copy()。