]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/locale/doc/html/boundary_8cpp-example.html
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / locale / doc / html / boundary_8cpp-example.html
CommitLineData
7c673cae
FG
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2<html xmlns="http://www.w3.org/1999/xhtml">
3<head>
4<meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/>
5<meta http-equiv="X-UA-Compatible" content="IE=9"/>
6<meta name="generator" content="Doxygen 1.8.6"/>
7<title>Boost.Locale: boundary.cpp</title>
8<link href="tabs.css" rel="stylesheet" type="text/css"/>
9<script type="text/javascript" src="jquery.js"></script>
10<script type="text/javascript" src="dynsections.js"></script>
11<link href="navtree.css" rel="stylesheet" type="text/css"/>
12<script type="text/javascript" src="resize.js"></script>
13<script type="text/javascript" src="navtree.js"></script>
14<script type="text/javascript">
15 $(document).ready(initResizable);
16 $(window).load(resizeHeight);
17</script>
18<link href="doxygen.css" rel="stylesheet" type="text/css" />
19</head>
20<body>
21<div id="top"><!-- do not remove this div, it is closed by doxygen! -->
22<div id="titlearea">
23<table cellspacing="0" cellpadding="0">
24 <tbody>
25 <tr style="height: 56px;">
26 <td id="projectlogo"><img alt="Logo" src="boost-small.png"/></td>
27 <td style="padding-left: 0.5em;">
28 <div id="projectname">Boost.Locale
29 </div>
30 </td>
31 </tr>
32 </tbody>
33</table>
34</div>
35<!-- end header part -->
36<!-- Generated by Doxygen 1.8.6 -->
37 <div id="navrow1" class="tabs">
38 <ul class="tablist">
39 <li><a href="index.html"><span>Main&#160;Page</span></a></li>
40 <li><a href="pages.html"><span>Related&#160;Pages</span></a></li>
41 <li><a href="modules.html"><span>Modules</span></a></li>
42 <li><a href="namespaces.html"><span>Namespaces</span></a></li>
43 <li><a href="annotated.html"><span>Classes</span></a></li>
44 <li><a href="files.html"><span>Files</span></a></li>
45 <li><a href="examples.html"><span>Examples</span></a></li>
46 </ul>
47 </div>
48</div><!-- top -->
49<div id="side-nav" class="ui-resizable side-nav-resizable">
50 <div id="nav-tree">
51 <div id="nav-tree-contents">
52 <div id="nav-sync" class="sync"></div>
53 </div>
54 </div>
55 <div id="splitbar" style="-moz-user-select:none;"
56 class="ui-resizable-handle">
57 </div>
58</div>
59<script type="text/javascript">
60$(document).ready(function(){initNavTree('boundary_8cpp-example.html','');});
61</script>
62<div id="doc-content">
63<div class="header">
64 <div class="headertitle">
65<div class="title">boundary.cpp</div> </div>
66</div><!--header-->
67<div class="contents">
68<p>Example of using segment_index</p>
69<div class="fragment"><div class="line"><span class="comment">//</span></div>
70<div class="line"><span class="comment">// Copyright (c) 2009-2011 Artyom Beilis (Tonkikh)</span></div>
71<div class="line"><span class="comment">//</span></div>
72<div class="line"><span class="comment">// Distributed under the Boost Software License, Version 1.0. (See</span></div>
73<div class="line"><span class="comment">// accompanying file LICENSE_1_0.txt or copy at</span></div>
74<div class="line"><span class="comment">// http://www.boost.org/LICENSE_1_0.txt)</span></div>
75<div class="line"><span class="comment">//</span></div>
76<div class="line"><span class="preprocessor">#include &lt;boost/locale.hpp&gt;</span></div>
77<div class="line"><span class="preprocessor">#include &lt;iostream&gt;</span></div>
78<div class="line"><span class="preprocessor">#include &lt;cassert&gt;</span></div>
79<div class="line"><span class="preprocessor">#include &lt;ctime&gt;</span></div>
80<div class="line"></div>
81<div class="line"><span class="keywordtype">int</span> main()</div>
82<div class="line">{</div>
83<div class="line"> <span class="keyword">using namespace </span>boost::locale;</div>
84<div class="line"> <span class="keyword">using namespace </span>std;</div>
85<div class="line"></div>
86<div class="line"> <a name="_a0"></a><a class="code" href="classboost_1_1locale_1_1generator.html">generator</a> gen;</div>
87<div class="line"> <span class="comment">// Make system default locale global</span></div>
88<div class="line"> std::locale loc = gen(<span class="stringliteral">&quot;&quot;</span>);</div>
89<div class="line"> locale::global(loc); </div>
90<div class="line"> cout.imbue(loc);</div>
91<div class="line"> </div>
92<div class="line"></div>
93<div class="line"> <span class="keywordtype">string</span> text=<span class="stringliteral">&quot;Hello World! あにま! Linux2.6 and Windows7 is word and number. שָלוֹם עוֹלָם!&quot;</span>;</div>
94<div class="line"></div>
95<div class="line"> cout&lt;&lt;text&lt;&lt;endl;</div>
96<div class="line"></div>
97<div class="line"> <a name="_a1"></a><a class="code" href="classboost_1_1locale_1_1boundary_1_1segment__index.html">boundary::ssegment_index</a> index(<a name="a2"></a><a class="code" href="group__boundary.html#gga15de9963ce9bb6037c8525901dfbf641a99aad8b8a5e25baa9f695abe5e574bb6">boundary::word</a>,text.begin(),text.end());</div>
98<div class="line"> <a class="code" href="group__boundary.html#gaf7a775e77dbbca3495e11d646df96fd2">boundary::ssegment_index::iterator</a> p,e;</div>
99<div class="line"></div>
100<div class="line"> <span class="keywordflow">for</span>(p=index.begin(),e=index.end();p!=e;++p) {</div>
101<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;Part [&quot;</span>&lt;&lt;*p&lt;&lt;<span class="stringliteral">&quot;] has &quot;</span>;</div>
102<div class="line"> <span class="keywordflow">if</span>(p-&gt;rule() &amp; <a name="a3"></a><a class="code" href="group__boundary.html#gaac78a3a6b9e671e253a2591cb56a479b">boundary::word_number</a>)</div>
103<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;number(s) &quot;</span>;</div>
104<div class="line"> <span class="keywordflow">if</span>(p-&gt;rule() &amp; <a name="a4"></a><a class="code" href="group__boundary.html#ga8b7e6ce2fcb185845fa85a1a4c42b3c4">boundary::word_letter</a>)</div>
105<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;letter(s) &quot;</span>;</div>
106<div class="line"> <span class="keywordflow">if</span>(p-&gt;rule() &amp; <a name="a5"></a><a class="code" href="group__boundary.html#ga52d8c63e1f3f8c898c645352206a78ef">boundary::word_kana</a>)</div>
107<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;kana character(s) &quot;</span>;</div>
108<div class="line"> <span class="keywordflow">if</span>(p-&gt;rule() &amp; <a name="a6"></a><a class="code" href="group__boundary.html#ga705ab96f9e62810c8ed977c90d404ef8">boundary::word_ideo</a>)</div>
109<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;ideographic character(s) &quot;</span>;</div>
110<div class="line"> <span class="keywordflow">if</span>(p-&gt;rule() &amp; <a name="a7"></a><a class="code" href="group__boundary.html#ga90cf4f01b95658f659685377226677e7">boundary::word_none</a>)</div>
111<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;no word characters&quot;</span>;</div>
112<div class="line"> cout&lt;&lt;endl;</div>
113<div class="line"> }</div>
114<div class="line"></div>
115<div class="line"> index.<a name="a8"></a><a class="code" href="group__boundary.html#gafa2a756b10d3522743204b45b794bb3e">map</a>(<a name="a9"></a><a class="code" href="group__boundary.html#gga15de9963ce9bb6037c8525901dfbf641ae80c964112541d88af9b875dafb6605d">boundary::character</a>,text.begin(),text.end());</div>
116<div class="line"></div>
117<div class="line"> <span class="keywordflow">for</span>(p=index.begin(),e=index.end();p!=e;++p) {</div>
118<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;|&quot;</span> &lt;&lt;*p ;</div>
119<div class="line"> }</div>
120<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;|\n\n&quot;</span>;</div>
121<div class="line"></div>
122<div class="line"> index.map(<a name="a10"></a><a class="code" href="group__boundary.html#gga15de9963ce9bb6037c8525901dfbf641a72895419fdd7219b3695cf0abd602ea4">boundary::line</a>,text.begin(),text.end());</div>
123<div class="line"></div>
124<div class="line"> <span class="keywordflow">for</span>(p=index.begin(),e=index.end();p!=e;++p) {</div>
125<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;|&quot;</span> &lt;&lt;*p ;</div>
126<div class="line"> }</div>
127<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;|\n\n&quot;</span>;</div>
128<div class="line"></div>
129<div class="line"> index.map(<a name="a11"></a><a class="code" href="group__boundary.html#gga15de9963ce9bb6037c8525901dfbf641a88aa1509eace7589f5df87d4694871e9">boundary::sentence</a>,text.begin(),text.end());</div>
130<div class="line"></div>
131<div class="line"> <span class="keywordflow">for</span>(p=index.begin(),e=index.end();p!=e;++p) {</div>
132<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;|&quot;</span> &lt;&lt;*p ;</div>
133<div class="line"> }</div>
134<div class="line"> cout&lt;&lt;<span class="stringliteral">&quot;|\n\n&quot;</span>;</div>
135<div class="line"> </div>
136<div class="line">}</div>
137<div class="line"></div>
138<div class="line"><span class="comment">// vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4</span></div>
139<div class="line"></div>
140<div class="line"><span class="comment">// boostinspect:noascii</span></div>
141</div><!-- fragment --> </div><!-- contents -->
142</div><!-- doc-content -->
143
144 <li class="footer">
145&copy; Copyright 2009-2012 Artyom Beilis, Distributed under the <a href="http://www.boost.org/LICENSE_1_0.txt">Boost Software License</a>, Version 1.0.
146 </li>
147 </ul>
148 </div>
149</body>
150</html>