This piece of code fails. Is it a bug in strjoin or some general
backslash+chr(0) issue?
i=strsplit(lines,t.value,'\n'); //Split a multiline string
for(;i;i--) lines[i-1]+"
"; //Add backslash at the ends
tmpstr=strjoin(lines,'n'); //Merge back with 'n'
This should end up with "\n" (two chars) instead of '\n' (linefeed), but
the backslashes simply dissapear.