_Title "Split versus Tokenize" ' b+ 2022-02-01
' Is Tokenize really worth the extra LOC compared to Split?
' No! if you want to preserve blank lines.
'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
' save this file as "Split versus Tokenize.bas"
'!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Split buf$, deli$, LoadMe$()
splitTime
= Timer(.001) - startSplit
'For i = UBound(LoadMe$) - 5 To UBound(LoadMe$)
' Print i, LoadMe$(i)
'Next
Print "Time for Split was:"; splitTime
' reset for tokenize
startTokenize
= Timer(.001)tokenize buf$, deli$, LoadMe$()
TokenizeTime
= Timer(.001) - startTokenize
'For i = UBound(LoadMe$) - 5 To UBound(LoadMe$)
' Print i, LoadMe$(i)
'Next
Print "Time for Tokenize was:"; TokenizeTime
' << edit: had wrong variable in here
' note: I buggered this twice now, FOR base 1 array REDIM MyArray (1 to 1) AS ... the (1 to 1) is not same as (1) which was the Blunder!!!
'notes: REDIM the array(0) to be loaded before calling Split '<<<< IMPORTANT dynamic array and empty, can use any lbound though
'This SUB will take a given N delimited string, and delimiter$ and create an array of N+1 strings using the LBOUND of the given dynamic array to load.
'notes: the loadMeArray() needs to be dynamic string array and will not change the LBOUND of the array it is given. rev 2019-08-27
curpos
= 1: arrpos
= LBound(loadMeArray
): LD
= Len(delim
) dpos
= InStr(curpos
, SplitMeString
, delim
) loadMeArray
(arrpos
) = Mid$(SplitMeString
, curpos
, dpos
- curpos
) arrpos = arrpos + 1
curpos = dpos + LD
dpos
= InStr(curpos
, SplitMeString
, delim
) loadMeArray
(arrpos
) = Mid$(SplitMeString
, curpos
)
tokenized
= strtok
(_Offset(tokCopy
), delCopy
) StorageArray(i) = pointerToString(tokenized)
tokenized = strtok(0, delCopy)
i = i + 1
_MemGet pString
, pString.OFFSET
, ret
pointerToString = ret