On Wed, 14 Mar 2018, Sven Schreiber wrote:
Hi,
this is about string slicing, with snapshot March 9th:
<hansl>
string sf = sprintf("123\n456")
print sf # correct
eval sf[1:7] # correct
sf = sprintf("123\n456ยง")
print sf # correct
eval strlen(sf) # correct
eval sf[1:8] # stops after \n
eval substr(sf, 1, 8) # correct
</hansl>
Just in time for release?
Yes, now fixed (bytes versus code points). Release should be tomorrow.
Allin