Verketten Strings

Aus ArcoWiki
Version vom 4. Juni 2018, 13:36 Uhr von Slia (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „In order to '''Contatenate Strings''' it is necessary to use the command <code>CONCAT()</code>.<br/> <code><span style="color: green; text-decoration: non…“)
(Unterschied) ← Nächstältere Version | Aktuelle Version (Unterschied) | Nächstjüngere Version → (Unterschied)
Wechseln zu: Navigation, Suche

In order to Contatenate Strings it is necessary to use the command CONCAT().

$$ Example of concat Command

DECL/char,256,FILENAME,PART1,NAME
PART1=ASSIGN/'MY_PART'
NAME=ASSIGN/'MY_NAME'
FILENAME=ASSIGN/CONCAT(PART1,NAME,'.TXT')