Skip to content
Craig Edwards edited this page Apr 28, 2023 · 3 revisions

POP

POP variable-name,integer-expression

Given an array named by variable-name, remove the entry at the position indicated by integer-expression and move all other elements up the array to fill the space. The final element in the array is then filled with an empty string (for string arrays) or zero (for integer and real arrays) Note that POP does not reduce the actual array size. To actually resize the array (if you want to) call REDIM first.

Clone this wiki locally