next up previous contents index
suivant: Add an object to monter: Strings précédent: Find a character in   Table des matières   Index


Concat objects into a string : cat

cat takes as argument a sequence of objects.
cat concat these objects into a string.
Input :
cat("abcd",3,"d")
Output :
"abcd3d"
Input :
c:=5
cat("abcd",c,"e")
Output :
"abcd5e"
Input :
purge(c)
cat(15,c,3)
Output :
"15c3"



giac documentation written by Renée De Graeve and Bernard Parisse