Function Array_Slice(arr, start, newArray)
Dim x : x = 0
For i = start-1 to Ubound(arr)-1
ReDim Preserve newArray(x)
newArray(x) = arr(i)
x = x + 1
Next
Array_Slice = Ubound(newArray)
End Function
Subscribe to:
Post Comments (Atom)
Because you really have nothing better to do than this?
No comments:
Post a Comment