编写一个字符统计器,用来统计用户输入的各类数据字符各为多少!
这个问题 我纠结了一天了! 希望大虾 赐教啊!
procedure TForm1.Button1Click(Sender: TObject);
VAR
str1,str2:string;
a:integer;
begin
str1:=memo1.Lines.GetText();
str2:=copy(str1,1,1);
end;
end.
这是我写的代码 ! 只要求有memo控件!