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
Version | Status | Notes |
10.0 | No Change | Carried over from Panorama 6.0. |