wboundary.cpp 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. //
  2. // Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. //
  9. // ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
  10. //
  11. // BIG FAT WARNING FOR Microsoft Visual Studio Users
  12. //
  13. // YOU NEED TO CONVERT THIS SOURCE FILE ENCODING TO UTF-8 WITH BOM ENCODING.
  14. //
  15. // Unfortunately MSVC understands that the source code is encoded as
  16. // UTF-8 only if you add useless BOM in the beginning.
  17. //
  18. // So, before you compile "wide" examples with MSVC, please convert them to text
  19. // files with BOM. There are two very simple ways to do it:
  20. //
  21. // 1. Open file with Notepad and save it from there. It would convert
  22. // it to file with BOM.
  23. // 2. In Visual Studio go File->Advances Save Options... and select
  24. // Unicode (UTF-8 with signature) Codepage 65001
  25. //
  26. // Note: once converted to UTF-8 with BOM, this source code would not
  27. // compile with other compilers, because no-one uses BOM with UTF-8 today
  28. // because it is absolutely meaningless in context of UTF-8.
  29. //
  30. // ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !
  31. //
  32. #include <boost/locale.hpp>
  33. #include <iostream>
  34. #include <cassert>
  35. #include <ctime>
  36. int main()
  37. {
  38. using namespace boost::locale;
  39. using namespace std;
  40. // Create system default locale
  41. generator gen;
  42. locale loc=gen("");
  43. locale::global(loc);
  44. wcout.imbue(loc);
  45. // This is needed to prevent C library to
  46. // convert strings to narrow
  47. // instead of C++ on some platforms
  48. std::ios_base::sync_with_stdio(false);
  49. wstring text=L"Hello World! あにま! Linux2.6 and Windows7 is word and number. שָלוֹם עוֹלָם!";
  50. wcout<<text<<endl;
  51. boundary::wssegment_index index(boundary::word,text.begin(),text.end());
  52. boundary::wssegment_index::iterator p,e;
  53. for(p=index.begin(),e=index.end();p!=e;++p) {
  54. wcout<<L"Part ["<<*p<<L"] has ";
  55. if(p->rule() & boundary::word_number)
  56. wcout<<L"number(s) ";
  57. if(p->rule() & boundary::word_letter)
  58. wcout<<L"letter(s) ";
  59. if(p->rule() & boundary::word_kana)
  60. wcout<<L"kana character(s) ";
  61. if(p->rule() & boundary::word_ideo)
  62. wcout<<L"ideographic character(s) ";
  63. if(p->rule() & boundary::word_none)
  64. wcout<<L"no word characters";
  65. wcout<<endl;
  66. }
  67. index.map(boundary::character,text.begin(),text.end());
  68. for(p=index.begin(),e=index.end();p!=e;++p) {
  69. wcout<<L"|" <<*p ;
  70. }
  71. wcout<<L"|\n\n";
  72. index.map(boundary::line,text.begin(),text.end());
  73. for(p=index.begin(),e=index.end();p!=e;++p) {
  74. wcout<<L"|" <<*p ;
  75. }
  76. wcout<<L"|\n\n";
  77. index.map(boundary::sentence,text.begin(),text.end());
  78. for(p=index.begin(),e=index.end();p!=e;++p) {
  79. wcout<<L"|" <<*p ;
  80. }
  81. wcout<<"|\n\n";
  82. }
  83. // vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
  84. // boostinspect:noascii