分类: [C++]--[Boost]2012-12-28 21:42 2343人阅读 评论(0) 收藏 举报
 

目录(?)[+]

 

tokenizer 库提供预定义好的四个分词对象, 其中char_delimiters_separator已弃用. 其他如下:

1. char_separator

char_separator有两个构造函数
1. char_separator()
使用函数 std::isspace() 来识别被弃分隔符,同时使用 std::ispunct() 来识别保留分隔符。另外,抛弃空白单词。(见例2)
2. char_separator(// 不保留的分隔符
                               const Char* dropped_delims,
                               // 保留的分隔符
                               const Char* kept_delims = 0, 
                               // 默认不保留空格分隔符, 反之加上改参数keep_empty_tokens
                               empty_token_policy empty_tokens = drop_empty_tokens) 

该函数创建一个 char_separator 对象,该对象被用于创建一个 token_iterator 或 tokenizer 以执行单词分解。dropped_delims 和 kept_delims 都是字符串,其中的每个字符被用作分解时的分隔符。当在输入序列中遇到一个分隔符时,当前单词即完成,并开始下一个新单词。dropped_delims 中的分隔符不出现在输出的单词中,而 kept_delims 中的分隔符则会作为单词输出。如果 empty_tokens 为 drop_empty_tokens, 则空白单词不会出现在输出中。如果 empty_tokens 为 keep_empty_tokens 则空白单词将出现在输出中。 (见例3)

2. escaped_list_separator

escaped_list_separator有两个构造函数
下面三个字符做为分隔符: '\', ',', '"'
1. explicit escaped_list_separator(Char e = '\\', Char c = ',',Char q = '\"');

参数 描述
e 指定用作转义的字符。缺省使用C风格的\(反斜杠)。但是你可以传入不同的字符来覆盖它。
如果你有很多字段是Windows风格的文件名时,路径中的每个\都要转义。
你可以使用其它字符作为转义字符。
c 指定用作字段分隔的字符
q 指定用作引号的字符

2. escaped_list_separator(string_type e, string_type c, string_type q):

参数 描述
e 字符串e中的字符都被视为转义字符。如果给定的是空字符串,则没有转义字符。
c 字符串c中的字符都被视为分隔符。如果给定的是空字符串,则没有分隔符。
q 字符串q中的字符都被视为引号字符。如果给定的是空字符串,则没有引号字符。

3. offset_separator

offset_separator 有一个有用的构造函数
template<typename Iter>
  offset_separator(Iter begin,Iter end,bool bwrapoffsets = true, bool breturnpartiallast = true);

参数 描述
begin, end 指定整数偏移量序列
bwrapoffsets 指明当所有偏移量用完后是否回绕到偏移量序列的开头继续。
例如字符串 "1225200101012002" 用偏移量 (2,2,4) 分解,
如果 bwrapoffsets 为 true, 则分解为 12 25 2001 01 01 2002.
如果 bwrapoffsets 为 false, 则分解为 12 25 2001,然后就由于偏移量用完而结束。
breturnpartiallast 指明当被分解序列在生成当前偏移量所需的字符数之前结束,是否创建一个单词,或是忽略它。
例如字符串 "122501" 用偏移量 (2,2,4) 分解,
如果 breturnpartiallast 为 true,则分解为 12 25 01.
如果为 false, 则分解为 12 25,然后就由于序列中只剩下2个字符不足4个而结束。

例子

  1. void test_string_tokenizer()
  2. {
  3. using namespace boost;
  4. // 1. 使用缺省模板参数创建分词对象, 默认把所有的空格和标点作为分隔符.
  5. {
  6. std::string str("Link raise the master-sword.");
  7. tokenizer<> tok(str);
  8. for (BOOST_AUTO(pos, tok.begin()); pos != tok.end(); ++pos)
  9. std::cout << "[" << *pos << "]";
  10. std::cout << std::endl;
  11. // [Link][raise][the][master][sword]
  12. }
  13. // 2. char_separator()
  14. {
  15. std::string str("Link raise the master-sword.");
  16. // 一个char_separator对象, 默认构造函数(保留标点但将它看作分隔符)
  17. char_separator<char> sep;
  18. tokenizer<char_separator<char> > tok(str, sep);
  19. for (BOOST_AUTO(pos, tok.begin()); pos != tok.end(); ++pos)
  20. std::cout << "[" << *pos << "]";
  21. std::cout << std::endl;
  22. // [Link][raise][the][master][-][sword][.]
  23. }
  24. // 3. char_separator(const Char* dropped_delims,
  25. //                   const Char* kept_delims = 0,
  26. //                   empty_token_policy empty_tokens = drop_empty_tokens)
  27. {
  28. std::string str = ";!!;Hello|world||-foo--bar;yow;baz|";
  29. char_separator<char> sep1("-;|");
  30. tokenizer<char_separator<char> > tok1(str, sep1);
  31. for (BOOST_AUTO(pos, tok1.begin()); pos != tok1.end(); ++pos)
  32. std::cout << "[" << *pos << "]";
  33. std::cout << std::endl;
  34. // [!!][Hello][world][foo][bar][yow][baz]
  35. char_separator<char> sep2("-;", "|", keep_empty_tokens);
  36. tokenizer<char_separator<char> > tok2(str, sep2);
  37. for (BOOST_AUTO(pos, tok2.begin()); pos != tok2.end(); ++pos)
  38. std::cout << "[" << *pos << "]";
  39. std::cout << std::endl;
  40. // [][!!][Hello][|][world][|][][|][][foo][][bar][yow][baz][|][]
  41. }
  42. // 4. escaped_list_separator
  43. {
  44. std::string str = "Field 1,\"putting quotes around fields, allows commas\",Field 3";
  45. tokenizer<escaped_list_separator<char> > tok(str);
  46. for (BOOST_AUTO(pos, tok.begin()); pos != tok.end(); ++pos)
  47. std::cout << "[" << *pos << "]";
  48. std::cout << std::endl;
  49. // [Field 1][putting quotes around fields, allows commas][Field 3]
  50. // 引号内的逗号不可做为分隔符.
  51. }
  52. // 5. offset_separator
  53. {
  54. std::string str = "12252001400";
  55. int offsets[] = {2, 2, 4};
  56. offset_separator f(offsets, offsets + 3);
  57. tokenizer<offset_separator> tok(str, f);
  58. for (BOOST_AUTO(pos, tok.begin()); pos != tok.end(); ++pos)
  59. std::cout << "[" << *pos << "]";
  60. std::cout << std::endl;
  61. }
  62. }

【Boost】boost::tokenizer详解的更多相关文章

  1. boost::tokenizer详解

    tokenizer 库提供预定义好的四个分词对象, 其中char_delimiters_separator已弃用. 其他如下: 1. char_separator char_separator有两个构 ...

  2. [转] boost::function用法详解

    http://blog.csdn.net/benny5609/article/details/2324474 要开始使用 Boost.Function, 就要包含头文件 "boost/fun ...

  3. boost::function用法详解

    要开始使用 Boost.Function, 就要包含头文件 "boost/function.hpp", 或者某个带数字的版本,从 "boost/function/func ...

  4. Boost::split用法详解

    工程中使用boost库:(设定vs2010环境)在Library files加上 D:\boost\boost_1_46_0\bin\vc10\lib在Include files加上 D:\boost ...

  5. boost::fucntion 用法详解

    转载自:http://blog.csdn.net/benny5609/article/details/2324474 要开始使用 Boost.Function, 就要包含头文件 "boost ...

  6. boost库asio详解1——strand与io_service区别

    namespace { // strand提供串行执行, 能够保证线程安全, 同时被post或dispatch的方法, 不会被并发的执行. // io_service不能保证线程安全 boost::a ...

  7. Boost::bind使用详解

    1.Boost::bind 在STL中,我们经常需要使用bind1st,bind2st函数绑定器和fun_ptr,mem_fun等函数适配器,这些函数绑定器和函数适配器使用起来比较麻烦,需要根据是全局 ...

  8. 【Boost】boost库asio详解5——resolver与endpoint使用说明

    tcp::resolver一般和tcp::resolver::query结合用,通过query这个词顾名思义就知道它是用来查询socket的相应信息,一般而言我们关心socket的东东有address ...

  9. boost::algorithm用法详解之字符串关系判断

    http://blog.csdn.net/qingzai_/article/details/44417937 下面先列举几个常用的: #define i_end_with boost::iends_w ...

随机推荐

  1. my live boadband

    id_boadband tel: 02511931324 ¥1600 包2年,10MB/S =100Mb,2018.12.1 ~ 2020.12.1 end

  2. python 正则表达式re模块

    #####################总结##############    优点:  灵活, 功能性强, 逻辑性强.               缺点:  上手难,旦上手, 会爱上这个东西    ...

  3. springboot单元测试 注入失败 空指针

    今天写代码,在test的类中@Autowired注入要测试的@Component类,但发现一运行就会报空指针异常java.lang.NullPointException,但发现使用new的方法的时候可 ...

  4. JS盒模型

    JS盒模型 ***** 1.width | height parseInt(getComputedStyle(ele, null).getPropertyValue('width')) parseIn ...

  5. pycharm仿sublime配色

    1.设置IDE皮肤主题 file->setting->appearance->theme->darcula 2.setting中搜索python,将主题设置成Monokai,然 ...

  6. for each循环(增强for循环)

    底层实现是使用了迭代器,简化了迭代器的书写 格式: for(集合/数组的数据类型 变量名: 数组名/集合名) { // body } char[] chars = {'c', 'd', 'd', 'e ...

  7. js 操作对象 记录

    js 对象记录一下: let obj_1 = { name : 'james', age : '22', sex: '1' } for ( i in obj_1 ) { console.log(i) ...

  8. Android文字转语音引擎(TTS)使用

    百度网盘下载地址 密码:3si0资源来源:https://blog.csdn.net/Sqq_yj/article/details/82460580?utm_source=blogxgwz4 简单比较 ...

  9. 最好用的js前端框架、组件、文档在线预览插件

    这里收集的都是个人认为比较好的js框架.组件 js前端ui框架 此处列举出个人认为最好的几个框架(排序即排名),现在好点的框架商用都需要付费,以下几个也不例外,但是由于组件丰富,都可以作为企业应用的完 ...

  10. js获取网页面的高度和宽度

    网页可见区域宽:document.body.clientWidth网页可见区域高:document.body.clientHeight网页可见区域宽:document.body.offsetWidth ...