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

buildString

buildString( 
l_strings 
[ S_glueCharacters ] 
) 
=> t_string

Description

Concatenates a list of strings with specified separation characters.

Arguments

l_strings

List of strings. A null string is permitted.

S_glueCharacters

Separation characters you use within the strings. A null string is permitted. If this argument is omitted, the default single space is used.

Value Returned

t_string

Strings concatenated with t_glueCharacters. Signals an error if l_strings is not a list of strings.

Examples

buildString( '("test" "il") ".")      
=> "test.il"
buildString( '("usr" "mnt") "/")      
=> "usr/mnt"
buildString( '("a" "b" "c"))          
=> "a b c"
buildString( '("a" "b" "c") "")       
=> "abc"
buildString( '("A" "B") 'and)         
=> "AandB"

Related Topics

String Functions

parseString


Return to top
 ⠀
X