pxt-arcade icon indicating copy to clipboard operation
pxt-arcade copied to clipboard

substr length broken

Open mmoskal opened this issue 5 years ago • 2 comments

let str = "A very long string hey ho hey ho"
game.onPaint(function () {
    screen.print(str.substr(6), 0, 0)
})

This prints long stri as the length in substr() defaults to 10...

mmoskal avatar Jul 09 '19 22:07 mmoskal

we could move substr() to helpers and implement with slice() (which doesn't have the issue)

mmoskal avatar Jul 09 '19 22:07 mmoskal

cc @gitri-ms

mmoskal avatar Jul 09 '19 22:07 mmoskal