Erase

Erase ArrayVariable, [ArrayVariable], ...

Erases one or more array variables by clearing the contents. The dimensions remain the same.

Dim MyArray() As String = Split("Hello world", " ")
SendDebug MyArray(1) 'Returns 'world'
Erase MyArray
SendDebug MyArray(1) 'Returns ""

See also: