hi
i have a small question regarding arrays
How do i delete a value in the array, i know i could simply assign a blank value in the array element thus removing the value but that array segment will still be there.
so basically i know I could do the following:
Array Element Value
1 A
2 B
3 C
Array Element Value
1 A
2
3 C
But what I want to do is:
Array Element Value
1 A
2 B
3 C
Array Element Value
1 A
3 C
Is there a way of doing so.
Hope i made some sense.
Sunit