Im trying to process a plain text file (loaded into a StringList), by using class Tbb2uc but getting AV at calling function GetAddress.
TArrayQuotePositions =
You are accessing your stringlist out of bounds.
for i := 0 to SlInput.Count -1 do begin // ...(etc) addr := GetAddress(SlInput[i+2]);
i is running to the full size of the list. You are indexing two higher than that.
i