Page MenuHomeFeedback Tracker

copytoclipboard /copyfromclipboard knows only ASCII characters
Assigned, NormalPublic

Description

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	Â…
...

Details

Severity
Minor
Resolution
Open
Reproducibility
Always
Operating System
Windows 10 x64
Category
General
Steps To Reproduce

copytoclipboard "ü" → ü

copy to clipboard ü → will not shown in debug console.

Additional Information

According to Wiki all string should be UTF-8 or 16

Event Timeline

t.buur created this task.Sep 20 2016, 9:15 PM
BIS_fnc_KK changed the task status from New to Assigned.
BIS_fnc_KK removed BIS_fnc_KK as the assignee of this task.Nov 24 2020, 6:15 PM
BIS_fnc_KK added a subscriber: BIS_fnc_KK.