Append: Difference between revisions
Jump to navigation
Jump to search
(edit) |
(edit) |
||
Line 14: | Line 14: | ||
<noinclude> | <noinclude> | ||
[[Category: | [[Category:Operations]] | ||
[[Category:String | [[Category:String Operations]] | ||
</noinclude> | </noinclude> |
Revision as of 07:09, 11 January 2012
To append string2$ to string1$ means to join string2$ to the end of string1$.
To append to the end of a String you should (for maximum speed of code execution) use
X$(inf:0)="append this to end"
OR
X$(inf:inf)="append this to the end"
Here, inf denotes infinity.
So X$(inf:inf) means "the substring of X$ starting at infinity". This is particularly useful when you don't know how long your string is and do not want to calculate its length.