Jun 20 2008 3:19PM GMT
Posted by: Jerry Lees
erase, dimensional arrays, working with arrays, VBScript, VBScript Statements, vbscriptstatements
VBScript Statements: Explanation of the Erase statement
Posted by: Jerry Lees
The VBScript Erase statement is used to erase all the values of an array, but keep the array size and dimensions intact.
This is useful when you re-use an array and you want to ensure the values inside an array have truely been cleared and no old data is left in the array.
For example, the following would print a blank line:
Redim Bob(10)
Bob(1) = “Rickky Bobby”
Erase Bob
Wscript.echo Bob(1)



You must be logged-in to post a comment. Log-in/Register