buildString
buildString(l_strings[S_glueCharacters] ) =>t_string
Description
Concatenates a list of strings with specified separation characters.
Arguments
|
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
|
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
Return to top