Append

From BR Wiki
Revision as of 13:09, 9 January 2012 by Mikhail.zheleznov (talk | contribs) (edit)
Jump to navigation Jump to search

To append to the end of a String you should (for maximum speed of code execution) use

X$(inf:0)="append this to end"

Here, inf denotes infinity. So X$(inf:0) 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.

Another method that is almost as quick is:

X$(inf:inf)="append this to the end"

or

X$(inf:0)="append this to the end"