Concatène deux paramètres de chaîne ou une liste de chaînes.
Chaîne
concat(<parameters>)
Paramètre | Type |
---|---|
Liste | listString |
chaîne | chaîne |
concat(<string>,<string>)
concat(<listString>)
Renvoie une chaîne.
concat("Hello","World")
Renvoie « HelloWorld ».
concat(["Hello"," ","World"])
Renvoie « Hello World ».