strcatconcatena stringsSeqüência de Chamamentotxt=strcat(vector_of_strings [,string_added])
txt=strcat(vector_of_strings [,string_added, ["flag"]])
Parâmetrosvector_of_stringsvetor de stringsstring_addedstring adicionado, o valor padrão é emptystr
""txtstring"flag"string ( "r" para retornar uma matriz linha, "c" para
retornar uma matriz coluna)
Descriçãotxt=strcat(vector_of_strings) concatena strings :
txt=vector_of_strings(1)+...+vector_of_strings(n)txt=strcat(vector_of_strings,string_added)
retorna
txt=vector_of_strings(1)+string_added+...+string_added+vector_of_strings(n).
O símbolo de mais faz o mesmo: "a"+"b" é o mesmo
que strcat(["a","b"]).Se o tamanho de vector_of_strings for um, retorna
txt=vector_of_strings(1); strcat('A','B') retorna 'A' , não 'AB' como
strcat(['A','B'])ExemplosVer Também
string
strings