4.18g: Difference between revisions
Jump to navigation
Jump to search
m (1 revision) |
No edit summary |
||
Line 1: | Line 1: | ||
'''4.18g''' (dated [[November 1]], | '''4.18g''' (dated [[November 1]], 2008) fixes a bug which we discussed recently here on the forum. I believe I may have given incorrect advise. I had to change my code to correct. | ||
X$(99999:0)="append this" used to append to the beginning of a string but this was wrong. As of 4.18g it now appends to the end of a string. | X$(99999:0)="append this" used to append to the beginning of a string but this was wrong. As of 4.18g it now appends to the end of a string. |
Latest revision as of 16:10, 18 July 2013
4.18g (dated November 1, 2008) fixes a bug which we discussed recently here on the forum. I believe I may have given incorrect advise. I had to change my code to correct.
X$(99999:0)="append this" used to append to the beginning of a string but this was wrong. As of 4.18g it now appends to the end of a string.
- To append to the end of a string you should use X$(32767:0)="append this to end"
- To append to the beginning of a string you should use X$(0:0)="append this to front"