`
lunan
  • 浏览: 78656 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

boost::string(转)

 
阅读更多

boost::algorithm提供了很多字符串算法,包括: 大小写转换; 去除无效字符; 谓词; 查找; 删除/替换; 切割; 连接; 我们用写例子的方式来了解boost::algorithm能够为我们做些什么。

boost::algorithm学习
#include <boost/algorithm/string.hpp>
using namespace std;
using namespace boost; 
一:大小写转换
to_upper() 将字符串转为大写
Example:
string str1(" hello world! ");
to_upper(str1); // str1 == " HELLO WORLD! "

to_upper_copy() 将字符串转为大写,并且赋值给另一个字符串
Example:
string str1(" hello world! ");
string str2;
str2 = to_upper_copy(str1); // str2 == " HELLO WORLD! "

to_lower() 将字符串转为小写
Example:参看to_upper()
to_lower_copy() 将字符串转为小写,并且赋值给另一个字符串
Example:参看to_upper_copy()

二:Trimming(整理,去掉首尾的空格字符)
trim_left() 将字符串开头的空格去掉
Example:
string str1(" hello world! ");
trim_left(str1);      // str1 == "hello world! "

trim_left_if() 将字符串开头的符合我们提供的“谓词”的特定字符去掉
Example:
bool NotH(const char &ch)
{
   if(ch == ' ' || ch == 'H' || ch == 'h')
    return true;
   else
    return false;
}
....
string str1(" hello world! ");
trim_left_if(str1, NotH);      // str1 == "ello world! "

trim_left_copy() 将字符串开头的空格去掉,并且赋值给另一个字符串
Example:
string str1(" hello world! ");
string str2;
str2 = trim_left_copy(str1); // str2 == "hello world! "

trim_left_copy_if() 将字符串开头的符合我们提供的“谓词”的特定字符去掉,并且赋值给另一个字符串
Example:
string str1(" hello world! ");
string str2;
str2 = trim_left_copy_if(str1, NotH);      // str2 == "ello world! "

// 将字符串结尾的空格去掉,示例请参看上面
trim_right_copy_if()
trim_right_if()
trim_right_copy()
trim_right()

// 将字符串开头以及结尾的空格去掉,示例请参看上面
trim_copy_if()
10 trim_if()
11 trim_copy()
12 trim()

三:谓词
starts_with() 判断一个字符串是否是另外一个字符串的开始串
Example:
string str1("hello world!");
string str2("hello");
bool result = starts_with(str1, str2); // result == true

istarts_with() 判断一个字符串是否是另外一个字符串的开始串(不区分大小写)
Example:
string str1("hello world!");
string str2("Hello");
bool result = istarts_with(str1, str2); // result == true

ends_with() 判断一个字符串是否是另外一个字符串的结尾串
iends_with() 判断一个字符串是否是另外一个字符串的结尾串(不区分大小写)

contains() 判断一个字符串是否包含另外一个字符串
Example:
string str1("hello world!");
string str2("llo");
bool result = contains(str1, str2); // result == true
icontains() 判断一个字符串是否包含另外一个字符串(不区分大小写)

equals() 判断两个字符串是否相等
iequals() 判断两个字符串是否相等(不区分大小写)

lexicographical_compare() 按照字典排序,如果第一个字符串小于第二个字符串,返回true (我的boost1.33没有实现?)
10 ilexicographical_compare() 按照字典排序,如果第一个字符串小于第二个字符串,返回true(不区分大小写)(我的boost1.33没有实现?

11 all() 判断字符串中的所有字符是否全部满足这个谓词
Example:
bool is_123digit(const char &ch)
{
   if(ch == '1' || ch == '2' || ch == '3')
    return true;
   else
    return false;
}
...
string str1("12332211");
bool result = all(str1, is_123digit); // result == true
str1 = "412332211";
result = all(str1, is_123digit); // result == false

四:查找
find_first() 从头查找字符串中的子字符串,返回这个子串在原串中的iterator_range迭代器
Example:
char ToUpper(char &ch)
char ToUpper(char &ch)
{
   if(ch <= 'z' && ch >= 'a')
    return ch + 'A'-'a';
   else
    return ch;
}
...
string str1("hello dolly!");
iterator_range<string::iterator> result = find_first(str1,"ll");
transform( result.begin(), result.end(), result.begin(), ToUpper ); // str1 == "heLLo dolly!"
ifind_first() 从头查找字符串中的子字符串,返回这个子串在原串中的iterator_range迭代器(不区分大小写)

find_last() 从尾查找字符串中的子字符串,返回这个子串在原串中的iterator_range迭代器
ifind_last() 从尾查找字符串中的子字符串,返回这个子串在原串中的iterator_range迭代器(不区分大小写)

find_nth() 找到第n个匹配的子串(计算从0开始)
Example:
string str1("hello dolly!");
iterator_range<string::iterator> result = find_nth(str1,"ll", 1);
transform( result.begin(), result.end(), result.begin(), ToUpper ); // str1 == "hello doLLy!"
ifind_nth() 找到第n个匹配的子串(计算从0开始)(不区分大小写)

find_head() 找到字符串的前n个字节
Example:
string str1("hello dolly!");
iterator_range<string::iterator> result = find_head(str1,5);
transform( result.begin(), result.end(), result.begin(), ToUpper ); // str1 == "HELLO dolly!"
find_tail() 找到字符串的后n个字节

find_token() 找到符合谓词的串
Example:
char Add1(const char &ch)
{
   return ch+1;
}
...
string str1("hello 1 world!");
iterator_range<string::iterator> result = find_token(str1,is_123digit);
transform( result.begin(), result.end(), result.begin(), Add1 ); // str1 == "hello 2 world!");

10 find_regex() 匹配正则表达式
Example:(等稍候了解了boost的正则表达式后再给出)

11 find() 使用自己写的查找函数
Example:
iterator_range<string::iterator>
MyFinder1( std::string::iterator begin, std::string::iterator end )
{
   std::string::iterator itr;
   for(itr = begin;itr!=end;itr++)
   {
    if((*itr) == '1')
    {
     std::string::iterator preitr = itr;
     iterator_range<string::iterator> ret(preitr, ++itr);
     return ret;
    }
   }
   return iterator_range<string::iterator>();
} // boost自己也提供了很多Finder
...
string str1("hello 1 world!");
iterator_range<string::iterator> result = find(str1,MyFinder1);
transform( result.begin(), result.end(), result.begin(), Add1 ); // str1 == "hello 2 world!");

五:删除/替换
replace_first() 从头找到第一个匹配的字符串,将其替换为给定的另外一个字符串
Example:
string str1("hello world!");
replace_first(str1, "hello", "Hello"); // str1 = "Hello world!"
replace_first_copy() 从头找到第一个匹配的字符串,将其替换为给定的另外一个字符串,并且赋

值给另一个字符串
Example:
string str1("hello world!");
string str2;
str2 = replace_first_copy(str1, "hello", "Hello"); // str2 = "Hello world!"
ireplace_first() 从头找到第一个匹配的字符串,将其替换为给定的另外一个字符串(不区分大小写

)
ireplace_first_copy() 从头找到第一个匹配的字符串,将其替换为给定的另外一个字符串,并且赋

值给另一个字符串(不区分大小写)
erase_first()   从头找到第一个匹配的字符串,将其删除
Example:
string str1("hello world!");
erase_first(str1, "llo"); // str1 = "He world!"
erase_first_copy() 从头找到第一个匹配的字符串,将其删除,并且赋值给另一个字符串
Example:
string str1("hello world!");
string str2;
str2 = erase_first_copy(str1, "llo"); // str2 = "He world!"
ierase_first() 从头找到第一个匹配的字符串,将其删除(不区分大小写)
8 ierase_first_copy() 从头找到第一个匹配的字符串,将其删除,并且赋值给另一个字符串(不区分大

小写)

// 与上面类似,不过是从字符串尾开始替换
9 replace_last()
10 replace_last_copy()
11 ireplace_last()
12 ireplace_last_copy()
13 erase_last()
14 erase_last_copy()
15 ierase_last()
16 ierase_last_copy()

// 与上面类似,不过是从字符串n个匹配的开始替换
17 replace_nth() 
Example:
string str1("hello world!");
replace_nth(str1, "o", 1, "O"); // str1 = "hello wOrld!"
18 replace_nth_copy()
19 ireplace_nth()
20 ireplace_nth_copy()
21 erase_nth()
22 erase_nth_copy()
23 ierase_nth()
24 ierase_nth_copy()

// 与上面类似,不过是将所有的匹配字符串替换
25 replace_all()
26 replace_all_copy()
27 ireplace_all()
28 ireplace_all_copy()
29 erase_all()
30 erase_all_copy()
31 ierase_all()
32 ierase_all_copy()

33 replace_head() 替换前n个字符
Example:
string str1("hello world!");
replace_head(str1, 5, "HELLO"); // str1 = "HELLO world!"

34 replace_head_copy() 替换前n个字符,并且赋值给另一个字符串
Example:
   string str1("hello world!");
string str2;
str2 = replace_head_copy(str1, 5, "HELLO"); // str2 = "HELLO world!"

35 erase_head() 删除前n个字符
Example:
string str1("hello world!");
erase_head(str1, 5); // str1 = " world!"

36 erase_head_copy() 删除前n个字符,并且赋值给另一个字符串
Example:
   string str1("hello world!");
string str2;
str2 = erase_head_copy(str1, 5); // str2 = " world!"

// 与上面类似(替换/删除后n个字符)
37 replace_tail() 
38 replace_tail_copy() 
39 erase_tail() 
40 erase_tail_copy()

// 与正则表示式相关,稍后了解。
41 replace_regex() 
42 replace_regex_copy() 
43 erase_regex() 
44 erase_regex_copy() 
45 replace_all_regex() 
46 replace_all_regex_copy() 
47 erase_all_regex() 
48 erase_all_regex_copy()

// 不是很清楚,稍后了解
49 find_format() 
50 find_format_copy() 
51 find_format_all() 
52 find_format_all_copy()

六:切割
find_all() 查找所有匹配的值,并且将这些值放到给定的容器中
Example:
string str1("hello world!");
std::vector<std::string> result;
find_all(result, str1, "l"); // result = [3]("l","l","l")

ifind_all() 查找所有匹配的值,并且将这些值放到给定的容器中(不区分大小写)

find_all_regex() 与正则表达式相关,稍后了解

split() 按照给定的谓词切割字符串,并且把切割后的值放入到给定的容器中
Example:
class SplitNotThisChar
{
public:
   SplitNotThisChar(const char ch) : m_char(ch) {}
   bool operator ()(const char &ch) const
   {
    if(ch == m_char)
     return true;
    else
     return false;
   }
private:
   char m_char;
};

string str1("hello world!");
string str2;
std::vector<std::string> result;
split(result, str1, SplitNotThisChar('l')); // result = [4]("he","","o wor","d!")

split_regex() 与正则表达式相关,稍后了解

iter_find() 按照给定Finder查找字符串,并且把查找到的值放入到给定的容器中
Example:
string str1("hello world!");
std::vector<std::string> result;
// first_finder为Boost自带的Finder
iter_find(result, str1, first_finder("l")); // result = [3]("l","l","l")

iter_split() 按照给定的Finder切割字符串,并且把切割后的值放入到给定的容器中
Example:
string str1("hello world!");
std::vector<std::string> result;
iter_split(result, str1, first_finder("l")); // result = [4]("he","","o wor","d!")

分享到:
评论

相关推荐

    boost::asio::serialport实现串口通信

    std::string data = "Hello, world!"; boost::asio::write(serial, boost::asio::buffer(data)); ``` 4. **异步操作**: 异步操作允许程序在等待数据时继续执行其他任务。以下是一个简单的异步读取示例: ```...

    boost::asio::serial下6个工程演示多种串口读取写入方式方法

    boost::asio::serial下6个工程演示多种串口读取写入方式方法,包含simple,with_timeout,async,callback,qt_integration,stream 等多个工程演示多种方式读取,写入串口,char,string ,buffer[]等多种数据格式。

    Boost::Serialization存储C++对象

    2. **类型支持**:Boost.Serialization支持多种数据类型,包括基本类型(如int、float、string)、容器(如std::vector、std::map)、智能指针、自定义类对象等。通过继承`boost::serialize`并重载`save`和`load`...

    C++之boost::array的用法

    代码如下:#include &lt;string&gt;  #include   #include &lt;boost&gt;  #include   using namespace std;  int main()  {   boost::array&lt;int&gt; array_temp = {{12, 8, 45, 23, 9}};   sort(array_temp.begin(), ...

    一个基于Boost::Process & ZeroMQ方案的C++多进程并发muiltprocessing-master.zip

    Boost库和ZeroMQ(又名0MQ、ZMQ或ZeroMQ)是两个强大的工具,可以用于实现这样的功能。Boost::Process库提供了在C++中方便地创建和管理进程的接口,而ZeroMQ则是一个轻量级的消息中间件,它提供了高效的进程间通信...

    使用c++实现boost::any类

    使用c++实现boost::any类 any类可以存放任意类型数据,如: void test_any() { any any_a1(123); int a2 = any_cast(any_a1); int* p_a2 = any_cast(&any_a1); std::cout *p_a2="*p_a2&lt;&lt;std::endl; any any_b1...

    boost::asio测试程序(vs2005)

    std::string message = "Hello, World!\n"; boost::system::error_code ignored_error; boost::asio::write(socket, boost::asio::buffer(message), ignored_error); } } catch (std::exception& e) { std::...

    CPP转Json字符串

    标准json字符串编码使用unicode,即boost 提供的 中拼接起来的字符串采用unicode字符集编码,而很多网页采用编码为utf8。 这个库字符编码采用系统编码,系统采用utf8字符集的话拼接起来字符串就是ut8了;另外在博客...

    C++ boost::asio编程 同步TCP详解及实例代码

    ip::tcp::resolver::query query("127.0.0.1", to_string(PORT)); ip::tcp::resolver::iterator endpoint_iterator = resolver.resolve(query); boost::system::error_code ec; boost::asio::connect(socket, ...

    基于boost的bind与function的消息处理框架

    typedef boost::function(int, std::string)&gt; HandlerFunc; void registerHandler(const HandlerFunc& handler) { messageHandler_ = handler; } void handleMessage(int code, std::string message) { if ...

    C++实现string存取二进制数据的方法

    在C++编程中,STL(Standard Template Library)的string类是用于处理文本字符串的强大工具。然而,在处理二进制数据时,需要注意string类的一些特性,因为它通常与文本字符串关联,而二进制数据可能包含特殊的字符...

    c++ boost asio http get post请求

    在C++编程中,Boost库是一个非常重要的工具集,它为C++标准库提供了许多扩展功能,其中包括Boost.Asio库。Boost.Asio是用于网络编程的模块,它提供了低级和高级的网络通信接口,包括TCP、UDP、套接字以及HTTP等协议...

    boost::spirit解析表达式domo

    C++实现的表达式解析,本程序是利用强大的boost::spirit库实现的。这个东西实在是太强大了。 程序运行结果如下: -----------表达式解析--------- 已定义的函数有:PI,SIN,COS,TAN,,ABS,EXP,LOGN,POW,SQRT,FORMAT,...

    boost file system应用

    Boost File System库,简称为`boost::filesystem`,是Boost C++库的一部分,它提供了一组强大且跨平台的API,用于处理文件和目录。在Windows操作系统上,使用`boost::filesystem`进行文件操作和文件夹遍历尤其方便,...

    一个可用的boost的正则匹配

    std::string replaced = boost::regex_replace(input, pattern, "替换后的文本"); ``` 5. **迭代器使用**:对于大段文本,如`Noname2.txt`,可以使用`boost::sregex_iterator`和`boost::sregex_token_iterator`进行...

    boost正则表达式

    std::string replaced = boost::regex_replace(str, pattern, " "); ``` `replaced`将会是"Hello world"。 Boost正则表达式还支持标志(flags)来调整匹配行为,例如不区分大小写、多行模式等。同时,可以通过`...

    C++ Boost Thread 编程

    std::ofstream out(file_path.string()); if (out) { out 这是一个测试文件。\n"; } else { return 1; } // 更改当前工作目录 bf::current_path(path); // 检查是否为普通文件 if (bf::is_regular_file...

    浅析C++中boost.variant的几种访问方法

    std::cout &lt;&lt; boost::get&lt;std::string&gt;(v) &lt;&lt; std::endl; ``` 如果`v`实际存储的类型与`get`指定的类型不符,程序会在运行时抛出异常。 **2. 使用RTTI(运行时类型信息)** 通过查询`variant`的`type()`方法,可以...

    C/C++利用Boost库发送POST/GET请求

    http协议是互联网上应用最为广泛的一种网络协议,他在接口中扮演着重要的角色,Post/Get请求,想必大家都有所耳闻,我们一起利用Boost::Asio库来实现Post/Get请求的发送。 VS2013 文章地址:...

    C++ BOOST实例

    boost::match_results&lt;std::string::const_iterator&gt; match; if (boost::regex_search(input.begin(), input.end(), match, pattern)) { // 处理匹配结果 } ``` 4. **捕获组**:在正则表达式中,可以通过圆...

Global site tag (gtag.js) - Google Analytics