Copy / past from clipboard characters not in ASCII table will not work.
All unicode characters >126 are affected.
or other example:
_br = toString [13,10];//(carriage return & line feed) _tab = toString [9]; // tab _result = ""; for [{_i=0}, {_i<1000}, {_i=_i+1}] do { _res = toString [_i]; if (isNil "_res") then { _result = _result + str _i + _tab + "Nil" + _br; } else { _result = _result + str _i + _tab + _res + _br; }; }; copytoClipboard _result; hint "fertig";
Will result in
... 124 | 125 } 126 ~ 127 128 € 129  130 ‚ 131 ƒ 132 „ 133 … ...