summaryrefslogtreecommitdiff
path: root/opcodes/strcat.xml
blob: ba144cafdd0bda8a93d0ef4c40f623dacdcb2beb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<refentry id="strcat">
<indexterm id="Indexstrcat"><primary>strcat</primary></indexterm>
  <refentryinfo><title>Strings:Manipulation</title></refentryinfo>
  <refmeta>
    <refentrytitle>strcat</refentrytitle>
  </refmeta>

  <refnamediv>
    <refname>strcat</refname>
    <refpurpose>
      Concatenate strings
    </refpurpose>
  </refnamediv>

  <refsect1>
    <title>Description</title>
    <para>
      Concatenate two strings and store the result in a variable. <emphasis>strcat</emphasis> runs at i-time only. It is allowed for any of the input arguments to be the same as the output variable.
    </para>
  </refsect1>

  <refsect1>
    <title>Syntax</title>
    <synopsis>Sdst <command>strcat</command> Ssrc1, Ssrc2</synopsis>
  </refsect1>

  <refsect1>
    <title>Examples</title>
    <para>
      Here is an example of the strcat opcode. It uses the file <ulink url="examples/strcat.csd"><citetitle>strcat.csd</citetitle></ulink>.
      <example>
        <title>Example of the strcat opcode.</title>
        <para>See the sections <link linkend="UsingRealTime"><citetitle>Real-time Audio</citetitle></link> and <link linkend="CommandFlags"><citetitle>Command Line Flags</citetitle></link> for more information on using command line flags.</para>
          <xi:include href="examples-xml/strcat.csd.xml" xmlns:xi="http://www.w3.org/2001/XInclude"/>
      </example>
    </para>
  </refsect1>
 
  <refsect1>
	  <title>See also</title>
	  <para><link linkend="strcatk"><citetitle>strcatk</citetitle></link></para>
  </refsect1>
  
  <refsect1>
    <title>Credits</title>
    <para>
      <simplelist>
        <member>Author: Istvan Varga</member>
        <member>2005</member>
      </simplelist>
    </para>
    <para>New in version 5.02</para>
  </refsect1>
</refentry>