DEL

DEL


default file variables Index Level DELETE
Syntax DEL dynamic.array<ac.expression {,vc.expression ...  {,sc.expression}}>
Category BASIC
Type Statement
Description provides an alternate to the "delete" function for deleting a location from a dynamic array.
Options
See Also REPLACE INS dynamic array INSERT EXTRACT DELETE
Example equ vm to char(253)
beatles = "john":vm:"paul":vm:"pete":vm:"george"
del beatles<1,3>

This example deletes the value "pete" from the dynamic array "beatles".  The reference to attribute 1 is required.  The absence of attribute marks in "beatles" requires that it be treated as a single attribute.
Warnings
Compatibility D3 7.0 AP
default file variables Index Level DELETE