Difference between revisions of "Contatenate Strings"
From ArcoWiki
| (3 intermediate revisions by one other user not shown) | |||
| Line 1: | Line 1: | ||
| − | In order to '''[[Contatenate Strings]]''' it is necessary to use the command <code>CONCAT</code>.<br/> | + | In order to '''[[Contatenate Strings]]''' it is necessary to use the command <code>CONCAT()</code>.<br/> |
<code><span style="color: green; text-decoration: none;">$$ Example of concat Command</span><br/></code> | <code><span style="color: green; text-decoration: none;">$$ Example of concat Command</span><br/></code> | ||
| − | <code>DECL/char,256,FILENAME,PART1,NAME<br/></code> | + | ::<code>DECL/char,256,FILENAME,PART1,NAME<br/></code> |
| − | <code>PART1=ASSIGN/'MY_PART'<br/></code> | + | ::<code>PART1=ASSIGN/'MY_PART'<br/></code> |
| − | <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,NAMEPART1=ASSIGN/'MY_PART'NAME=ASSIGN/'MY_NAME'FILENAME=ASSIGN/CONCAT(PART1,NAME,'.TXT')