Was this helpful?
cleararray ( array );
This function clears all the elements of an array. It is the equivalent of setting each element = "". Using cleararray instead of a for loop yields 20- 30-percent speed increases for most scripts.
Example
#To clear all the elements of the array named fVal
cleararray(fVal);
Last modified date: 02/09/2024