]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/libstdc++-v3/contrib/libstdc++-v3-4.3.3/doc/html/manual/bk01pt05ch13.html
update
[l4.git] / l4 / pkg / libstdc++-v3 / contrib / libstdc++-v3-4.3.3 / doc / html / manual / bk01pt05ch13.html
1 <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /><title>Chapter 13. String Classes</title><meta name="generator" content="DocBook XSL Stylesheets V1.73.2" /><meta name="keywords" content="&#10;      ISO C++&#10;    , &#10;      library&#10;    " /><link rel="start" href="../spine.html" title="The GNU C++ Library Documentation" /><link rel="up" href="strings.html" title="Part V. Strings" /><link rel="prev" href="strings.html" title="Part V. Strings" /><link rel="next" href="bk01pt05ch13s02.html" title="Case Sensitivity" /></head><body><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">Chapter 13. String Classes</th></tr><tr><td width="20%" align="left"><a accesskey="p" href="strings.html">Prev</a> </td><th width="60%" align="center">Part V. Strings</th><td width="20%" align="right"> <a accesskey="n" href="bk01pt05ch13s02.html">Next</a></td></tr></table><hr /></div><div class="chapter" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title"><a id="manual.strings.string"></a>Chapter 13. String Classes</h2></div></div></div><div class="toc"><p><b>Table of Contents</b></p><dl><dt><span class="sect1"><a href="bk01pt05ch13.html#strings.string.simple">Simple Transformations</a></span></dt><dt><span class="sect1"><a href="bk01pt05ch13s02.html">Case Sensitivity</a></span></dt><dt><span class="sect1"><a href="bk01pt05ch13s03.html">Arbitrary Character Types</a></span></dt><dt><span class="sect1"><a href="bk01pt05ch13s04.html">Tokenizing</a></span></dt><dt><span class="sect1"><a href="bk01pt05ch13s05.html">Shrink to Fit</a></span></dt><dt><span class="sect1"><a href="bk01pt05ch13s06.html">CString (MFC)</a></span></dt></dl></div><div class="sect1" lang="en" xml:lang="en"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a id="strings.string.simple"></a>Simple Transformations</h2></div></div></div><p>
4       Here are Standard, simple, and portable ways to perform common
5       transformations on a <code class="code">string</code> instance, such as
6       "convert to all upper case." The word transformations
7       is especially apt, because the standard template function
8       <code class="code">transform&lt;&gt;</code> is used.
9    </p><p>
10      This code will go through some iterations.  Here's a simple
11      version:
12    </p><pre class="programlisting">
13    #include &lt;string&gt;
14    #include &lt;algorithm&gt;
15    #include &lt;cctype&gt;      // old &lt;ctype.h&gt;
16
17    struct ToLower
18    {
19      char operator() (char c) const  { return std::tolower(c); }
20    };
21
22    struct ToUpper
23    {
24      char operator() (char c) const  { return std::toupper(c); }
25    };
26
27    int main()
28    {
29      std::string  s ("Some Kind Of Initial Input Goes Here");
30
31      // Change everything into upper case
32      std::transform (s.begin(), s.end(), s.begin(), ToUpper());
33
34      // Change everything into lower case
35      std::transform (s.begin(), s.end(), s.begin(), ToLower());
36
37      // Change everything back into upper case, but store the
38      // result in a different string
39      std::string  capital_s;
40      capital_s.resize(s.size());
41      std::transform (s.begin(), s.end(), capital_s.begin(), ToUpper());
42    } 
43    </pre><p>
44      <span class="emphasis"><em>Note</em></span> that these calls all
45       involve the global C locale through the use of the C functions
46       <code class="code">toupper/tolower</code>.  This is absolutely guaranteed to work --
47       but <span class="emphasis"><em>only</em></span> if the string contains <span class="emphasis"><em>only</em></span> characters
48       from the basic source character set, and there are <span class="emphasis"><em>only</em></span>
49       96 of those.  Which means that not even all English text can be
50       represented (certain British spellings, proper names, and so forth).
51       So, if all your input forevermore consists of only those 96
52       characters (hahahahahaha), then you're done.
53    </p><p><span class="emphasis"><em>Note</em></span> that the
54       <code class="code">ToUpper</code> and <code class="code">ToLower</code> function objects
55       are needed because <code class="code">toupper</code> and <code class="code">tolower</code>
56       are overloaded names (declared in <code class="code">&lt;cctype&gt;</code> and
57       <code class="code">&lt;locale&gt;</code>) so the template-arguments for
58       <code class="code">transform&lt;&gt;</code> cannot be deduced, as explained in
59       <a class="ulink" href="http://gcc.gnu.org/ml/libstdc++/2002-11/msg00180.html" target="_top">this
60       message</a>.  
61       
62       At minimum, you can write short wrappers like
63    </p><pre class="programlisting">
64    char toLower (char c)
65    {
66       return std::tolower(c);
67    } </pre><p>The correct method is to use a facet for a particular locale
68       and call its conversion functions.  These are discussed more in
69       Chapter 22; the specific part is
70       <a class="ulink" href="../22_locale/howto.html#7" target="_top">Correct Transformations</a>,
71       which shows the final version of this code.  (Thanks to James Kanze
72       for assistance and suggestions on all of this.)
73    </p><p>Another common operation is trimming off excess whitespace.  Much
74       like transformations, this task is trivial with the use of string's
75       <code class="code">find</code> family.  These examples are broken into multiple
76       statements for readability:
77    </p><pre class="programlisting">
78    std::string  str (" \t blah blah blah    \n ");
79
80    // trim leading whitespace
81    string::size_type  notwhite = str.find_first_not_of(" \t\n");
82    str.erase(0,notwhite);
83
84    // trim trailing whitespace
85    notwhite = str.find_last_not_of(" \t\n"); 
86    str.erase(notwhite+1); </pre><p>Obviously, the calls to <code class="code">find</code> could be inserted directly
87       into the calls to <code class="code">erase</code>, in case your compiler does not
88       optimize named temporaries out of existence.
89    </p></div></div><div class="navfooter"><hr /><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="strings.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="strings.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="bk01pt05ch13s02.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">Part V. Strings </td><td width="20%" align="center"><a accesskey="h" href="../spine.html">Home</a></td><td width="40%" align="right" valign="top"> Case Sensitivity</td></tr></table></div></body></html>