Split Function ALWAYS base zero?

P

Paul Overway

Yes...the array is zero based (see help). Nevertheless, you just need to
subtract 1 from the index you're using...not that difficult.
 
B

Bill

It appears from debugging that the Split function returns
a "zero-based" array EVEN if Option Base 1 is specified.
Is that correct? If so, it sure screws things up if a Split
function is added to code that is already peppered with
code that is already using "1" based indexing.
Bill
 
B

Bill

Yes, I'd seen what Help had to say. It's just inconsistent with
what Array Help had to say about the use of Option Base 1
with arrays in general, so I thought I'd ask anyway.
Thanks,
Bill
 
Top