我找的一些资料:
var s:widestring;
a:string;
begin
a:='我们爱大富翁';
s:=a;
label1.Caption:=copy(s,2,1);
label2.Caption:=copy(a,2,1);
end;
用WideString
i:integer;
SW:WideString;
begin
Text:=YourText;
if Length(Text)<=0 then
abort;
SW:=Text;
Text:='';
for i:=1 to Length(SW)-1do
begin
Text:=Text+SW+Chr(13)+Chr(10);
end;
Text:=Text+SW[Length(SW)];
end;