Difference between revisions of "Contatenate Strings"

From ArcoWiki
Jump to: navigation, search
 
(2 intermediate revisions by one other user not shown)
Line 6: Line 6:
 
::<code>NAME=ASSIGN/'MY_NAME'<br/></code>
 
::<code>NAME=ASSIGN/'MY_NAME'<br/></code>
 
::<code>FILENAME=ASSIGN/CONCAT(PART1,NAME,'.TXT')<br/></code>
 
::<code>FILENAME=ASSIGN/CONCAT(PART1,NAME,'.TXT')<br/></code>
 +
 +
[[it:Stringhe concatenate]]
 +
[[zh-cn:连接字符串]]
 +
[[pt:Concatenar Cordas]]
 +
[[de:Verketten Strings]]
 +
[[es:Cadenas de concatenados]]
 +
[[en:Contatenate Strings]]
 +
 +
[[Category:Dmis_Tutorial]]

Latest revision as of 13:35, 4 June 2018

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')