ROPE Language Reference - "append"

The "append" action appends a string onto the end of the specified user register ($a through $z) in a way that makes the most efficient use of the Rope interpreter's temporary string jotter area.

The syntax is..

value register "append"

For example

"HTTP://" $a append
append( "HTTP://" $a )

Use "append" in preference to "put" when a script needs to build a string up using repeated concatinations. This slows down the rate at which the jotter space is used.

See Also

register, inc, dec, get, put