A: |
There are three possibilities (taken from KB 224)
1. To delete the entire contents of an array using one TSL statement, the delete statement can be used.
Example:
delete array[]; #for single and multi. dim. arrays
2. Assign the array field an empty value ("").
Example:
public ary[];
ary[0] = "one";
ary[1] = "two";
ary[2] = "three";
for (i in ary)
print(ary[i]);
for (i in ary)
ary[i] = "";
print("Array was cleared");
for (i in ary)
print(ary[i]);
3. Use the custom function array_empty.
Note:
This function is not part of WinRunner. It is not guaranteed to work and is not supported by Mercury Technical Support. You are responsible for any and all modifications that may be required.
public function array_empty(out array[])
{
return(E_OK);
}
Example:
public numbers[] = {1,2,3,4,5};
rc = array_empty(numbers); # The array is now empty.
|