RE: When is it better to declare a dynamic array as a Variant verses declaring it as a Dynamic Array? Peter LaComb 15.Jun.07 01:08 PM a Web browser General 6.0.2 CF2Windows 2000
As written you're declaring an uninitialized array of strings or an uninitialized array of variants...
the array of variants can hold data of multiple types...
but you could do:
dim sentences as variant
sentences = split(string, delim, -1)