1 | <html> |
---|
2 | <head> |
---|
3 | <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> |
---|
4 | <title>Function template join</title> |
---|
5 | <link rel="stylesheet" href="../../boostbook.css" type="text/css"> |
---|
6 | <meta name="generator" content="DocBook XSL Stylesheets V1.68.1"> |
---|
7 | <link rel="start" href="../../index.html" title="The Boost C++ Libraries BoostBook Documentation Subset"> |
---|
8 | <link rel="up" href="../../string_algo/reference.html#header.boost.algorithm.string.join.hpp" title="Header <boost/algorithm/string/join.hpp>"> |
---|
9 | <link rel="prev" href="iter_split.html" title="Function template iter_split"> |
---|
10 | <link rel="next" href="../../id1044106-bb.html" title="Function template join_if"> |
---|
11 | </head> |
---|
12 | <body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"> |
---|
13 | <table cellpadding="2" width="100%"> |
---|
14 | <td valign="top"><img alt="Boost C++ Libraries" width="277" height="86" src="../../../../boost.png"></td> |
---|
15 | <td align="center"><a href="../../../../index.htm">Home</a></td> |
---|
16 | <td align="center"><a href="../../../../libs/libraries.htm">Libraries</a></td> |
---|
17 | <td align="center"><a href="../../../../people/people.htm">People</a></td> |
---|
18 | <td align="center"><a href="../../../../more/faq.htm">FAQ</a></td> |
---|
19 | <td align="center"><a href="../../../../more/index.htm">More</a></td> |
---|
20 | </table> |
---|
21 | <hr> |
---|
22 | <div class="spirit-nav"> |
---|
23 | <a accesskey="p" href="iter_split.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.join.hpp"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../id1044106-bb.html"><img src="../../images/next.png" alt="Next"></a> |
---|
24 | </div> |
---|
25 | <div class="refentry" lang="en"> |
---|
26 | <a name="boost.algorithm.join"></a><div class="titlepage"></div> |
---|
27 | <div class="refnamediv"> |
---|
28 | <h2><span class="refentrytitle">Function template join</span></h2> |
---|
29 | <p>boost::algorithm::join — Join algorithm. </p> |
---|
30 | </div> |
---|
31 | <h2 xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv-title">Synopsis</h2> |
---|
32 | <div xmlns:rev="http://www.cs.rpi.edu/~gregod/boost/tools/doc/revision" class="refsynopsisdiv"><pre class="synopsis"> |
---|
33 | <span class="bold"><strong>template</strong></span><<span class="bold"><strong>typename</strong></span> SequenceSequenceT, <span class="bold"><strong>typename</strong></span> Range1T> |
---|
34 | <span class="type">range_value< SequenceSequenceT >::type</span> |
---|
35 | join(<span class="bold"><strong>const</strong></span> SequenceSequenceT & Input, Range1T & Separator);</pre></div> |
---|
36 | <div class="refsect1" lang="en"> |
---|
37 | <a name="id1676387"></a><h2>Description</h2> |
---|
38 | <p>This algorithm joins all strings in a 'list' into one long string. Segments are concatenated by given separator.</p> |
---|
39 | <p> |
---|
40 | |
---|
41 | |
---|
42 | </p> |
---|
43 | <div class="variablelist"><table border="0"> |
---|
44 | <col align="left" valign="top"> |
---|
45 | <tbody> |
---|
46 | <tr> |
---|
47 | <td> |
---|
48 | <span class="term">Parameters:</span></td> |
---|
49 | <td><div class="variablelist"><table border="0"> |
---|
50 | <col align="left" valign="top"> |
---|
51 | <tbody> |
---|
52 | <tr> |
---|
53 | <td> |
---|
54 | <span class="term"><code class="computeroutput">Input</code></span></td> |
---|
55 | <td><p>A container that holds the input strings. It must be a container-of-containers. </p></td> |
---|
56 | </tr> |
---|
57 | <tr> |
---|
58 | <td> |
---|
59 | <span class="term"><code class="computeroutput">Separator</code></span></td> |
---|
60 | <td><p>A string that will separate the joined segments. </p></td> |
---|
61 | </tr> |
---|
62 | </tbody> |
---|
63 | </table></div></td> |
---|
64 | </tr> |
---|
65 | <tr> |
---|
66 | <td> |
---|
67 | <span class="term">Returns:</span></td> |
---|
68 | <td><p>Concatenated string.</p></td> |
---|
69 | </tr> |
---|
70 | <tr> |
---|
71 | <td> |
---|
72 | <span class="term">Notes:</span></td> |
---|
73 | <td><p>This function provides the strong exception-safety guarantee </p></td> |
---|
74 | </tr> |
---|
75 | </tbody> |
---|
76 | </table></div> |
---|
77 | </div> |
---|
78 | </div> |
---|
79 | <table width="100%"><tr> |
---|
80 | <td align="left"></td> |
---|
81 | <td align="right"><small>Copyright © 2002-2004 Pavol Droba</small></td> |
---|
82 | </tr></table> |
---|
83 | <hr> |
---|
84 | <div class="spirit-nav"> |
---|
85 | <a accesskey="p" href="iter_split.html"><img src="../../images/prev.png" alt="Prev"></a><a accesskey="u" href="../../string_algo/reference.html#header.boost.algorithm.string.join.hpp"><img src="../../images/up.png" alt="Up"></a><a accesskey="h" href="../../index.html"><img src="../../images/home.png" alt="Home"></a><a accesskey="n" href="../../id1044106-bb.html"><img src="../../images/next.png" alt="Next"></a> |
---|
86 | </div> |
---|
87 | </body> |
---|
88 | </html> |
---|