append
DATA
,
TEXT

The append statement appends a text string to a field or variable.


Parameters

This statement has two parameters:

data – Name of field or variable.

text – Text to be appended to field or variable.


Description

This statement appends a text string to a field or variable. If the field or variable doesn’t have a value yet, the text string is simply assigned to it.

This example puts the word “yo-yo” into the local variable mytext.

local mytext
append mytext,"yo"
append mytext," -yo"

History

VersionStatusNotes
10.0No ChangeCarried over from Panorama 6.0.