Question

In J, i can do the following:

r=:'0123456'
m=:3 } r
echo m

and it prints 3, as it should.

However, unicode seems to not work:

'▁▂▃▄▅▆▇'
m=: 3 } r
echo m

prints nothing. My guess is that this is due to } indexing by byte - what is the proper way to index by char position?

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top