Product Documentation
Cadence SKILL Language Reference
Product Version IC23.1, November 2023

strcat

strcat( 
S_string1 
[ S_string2 ... ] 
) 
=> t_result

Description

Takes input strings or symbols and concatenates them.

Arguments

S_string1 S_string2 ...

One or more input strings or symbols.

Value Returned

t_result

New string containing the contents of all input strings or symbols S_string1, S_string2, ..., concatenated together. The input arguments are left unchanged.

Examples

strcat( 'ab "xyz" )        
=> "abxyz"
strcat( "l" "ab" "ef" )  
=> "labef"

Related Topics

String Functions

buildString

concat

strncat

strcmp

strncmp

substring


Return to top
 ⠀
X