Code: Select all
; PB 6.40 alpha 1 (x64) on Windows
s$ = ~"123\t56"
Debug s$ ; looks OK
Debug Len(s$) ; error: shows '841592644013391878'//edit
The problem also exists with a "normal" string.
Code: Select all
; PB 6.40 alpha 1 (x64) on Windows
s$ = "123456"
Debug s$ ; looks OK
Debug Len(s$) ; error: shows '841592644013391878'
