- Scilab help
- Strings
- ascii
- blanks
- code2str
- convstr
- emptystr
- eval
- evstr
- grep
- isalphanum
- isascii
- isdigit
- isletter
- isnum
- justify
- length
- part
- regexp
- sci2exp
- str2code
- strcat
- strchr
- strcmp
- strcmpi
- strcspn
- strindex
- string
- strings
- stripblanks
- strncpy
- strrchr
- strrev
- strsplit
- strspn
- strstr
- strsubst
- strtod
- strtok
- tokenpos
- tokens
- tree2code
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
strcat
concatenate character strings
Calling Sequence
txt=strcat(vector_of_strings [,string_added]) txt=strcat(vector_of_strings [,string_added, ["flag"]])
Arguments
- vector_of_strings
vector of strings
- string_added
string added, default value is the emptystr
""
- txt
string
- "flag"
string ( "r" for return a row matrix, "c" for return a column matrix)
Description
txt=strcat(vector_of_strings)
concatenates
character strings :
txt=vector_of_strings(1)+...+vector_of_strings(n)
txt=strcat(vector_of_strings,string_added)
returns
txt=vector_of_strings(1)+string_added+...+string_added+vector_of_strings(n)
.
The plus symbol does the same: "a"+"b"
is the
same as strcat(["a","b"]).
If size of vector_of_strings is one, it returns
txt=vector_of_strings(1);
strcat('A','B')
returns 'A' and not 'AB' as
strcat(['A','B'])
Examples
strcat(string(1:10),',') strcat(["a","b"]) strcat(["a","b"],'|') strcat('A') strcat('A','B') strcat(['A','B']) strcat(['A','B'],'') m =["a" "b" ; "c" "d"]; strcat(m, "r") strcat(m, "", "r") strcat(m, "", "c")
<< str2code | Strings | strchr >> |