LD String1
CONCAT_STR String2
ST Result_String
Result_String := CONCAT_STR(String1, String2);
Paramètre
|
Type
|
Commentaire
|
---|---|---|
String1
|
Première chaîne de caractères à concaténer.
Exemple : String1 contient « SWITCH TO »
|
|
String2
|
Seconde chaîne de caractères à concaténer.
Exemple : String2 contient « RUN »
|
Paramètre
|
Type
|
Commentaire
|
---|---|---|
Result_String
|
Chaîne résultante égale au contenu des deux chaînes String1 et String2.
Exemple : pour les valeurs d’exemple du tableau précédent, Result_String contient « SWITCH TO RUN »
|