Difference between revisions of "Contatenate Strings"

From ArcoWiki
Jump to: navigation, search
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>
 +
 +
[[Category:Dmis_Tutorial]]

Revision as of 15:14, 4 August 2016

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