Man Scilab

strcat
Scilab Function

strcat - catenate character strings

Calling Sequence

txt=strcat(vstr [,strp])

Parameters

Description

txt=strcat(vstr) catenates character strings : txt=vstr(1)+...+vstr(n)

txt=strcat(vstr,strp) returns txt=strs(1)+strp+...+strp+strs(n) . The plus symbol does the same: "a"+"b" is the same as strcat(["a","b"])

Examples


strcat(string(1:10),',')
 
  

See Also

string ,   strings ,  

Back