strcat

strcat — Concatenate strings

Description

Concatenate two strings and store the result in a variable. strcat runs at i-time only, while strcatk does the concatenation both at initialization and performance time. It is allowed for any of the input arguments to be the same as the output variable.

Syntax

Sdst strcat Ssrc1, Ssrc2
Sdst strcatk Ssrc1, Ssrc2

Example

Sname   =  "beats"
Sname   strcat Sname, ".wav"
asig    soundin Sname
    

Credits

Author: Istvan Varga
2005