3ô Check whether the clipboard contains any text , "IsClipboardFormatAvailable", 1 ¸ res%  ô Read code from clipboard  "OpenClipboard", @hwnd% $ "GetClipboardData", 1 ¸ hdata% ! "GlobalLock", hdata% ¸ tmp% text$ = $$tmp%  "GlobalUnlock", hdata%  "CloseClipboard"   pos% = 1 cur% = §text$,½10,pos%) Ç cur% nxt% = —Átext$,cur%+1) ñ nxt% È nxt% Ê É -1,32 Ì Átext$,cur%,1) = " " Ë  pos% = cur% + 1 cur% = §text$,½10,pos%) Î  ô Write code to clipboard / "GlobalAlloc", &2000, ©(text$)+1 ¸ hdata% ! "GlobalLock", hdata% ¸ tmp% $$tmp% = text$  "GlobalUnlock", hdata%  "OpenClipboard", @hwnd%  "EmptyClipboard" # "SetClipboardData", 1, hdata%  "CloseClipboard" ÿÿ