User Guide : Using Content Extraction Language : Language Syntax and Examples : cleararray ( array );
 
Share this page                  
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);