[fpc-devel] Re: Unicode support (again)
Graeme Geldenhuys
graemeg.lists at gmail.com
Mon Nov 10 18:35:53 CET 2008
On Mon, Nov 10, 2008 at 4:54 PM, Graeme Geldenhuys
<graemeg.lists at gmail.com> wrote:
> I know we had so many discussions on how to implement Unicode support
> in FPC in the past. From what i remember, lots was based on "lets see
> what CodeGear does with D2009".
OK, so here goes again yet another discussion... :-)
What I meant is, does Delphi 2009 solve all these issue you guys have
just mentioned?
* Unicode source code?
* Copy, Pos etc functions?
* Nomalization?
* Does Vincent's example works as follows in D2009:
procedure TForm1.Button1Click(Sender: TObject);
var
i: integer;
begin
Edit1.Caption := 'hallo äöü';
Memo1.Clear;
for i := 1 to Length(Edit1.Caption) do
Memo1.Lines.Add(Copy(Edit1.Caption, i,1));
end;
Regards,
- Graeme -
_______________________________________________
fpGUI - a cross-platform Free Pascal GUI toolkit
http://opensoft.homeip.net/fpgui/
More information about the fpc-devel
mailing list