Hi, i have the following array with 2 blank elements: dim $arr1[4] $arr1[0]="" $arr1[1]="ABC" $arr1[2]="" $arr1[3]="xyz" i want now to delete the blank elements and put the result in a new Array --> this mean i will get in this case just two elemet in $arr2 and the length of the new array ($arr2) will be two: $arr2[0]="ABC" $arr2[1]="xyz" any idea? Thanks