Delphi中判断字母与汉字
procedure TForm1.Button1Click(Sender: TObject);
var
s:string; //保存字符串
i,e,c:integer;//保存变量
begin
s:=memo1.text;
e:=0;c:=0;
for i:=1 to length(s) do
begin
if (ord(s[i])>=33)and(ord(s[i])<=126) then
//判断字符的顺序号
begin
inc(e);
label1.caption:="字母个数:"+inttostr(e);
end
else
if (ord(s[i])>=127) then
//判断字符的顺序号
begin
inc(c);
label2.caption:="汉字个数:"+inttostr(c div 2);
end;
end;
end;
var
s:string; //保存字符串
i,e,c:integer;//保存变量
begin
s:=memo1.text;
e:=0;c:=0;
for i:=1 to length(s) do
begin
if (ord(s[i])>=33)and(ord(s[i])<=126) then
//判断字符的顺序号
begin
inc(e);
label1.caption:="字母个数:"+inttostr(e);
end
else
if (ord(s[i])>=127) then
//判断字符的顺序号
begin
inc(c);
label2.caption:="汉字个数:"+inttostr(c div 2);
end;
end;
end;
声明:该文观点仅代表作者本人,牛骨文系教育信息发布平台,牛骨文仅提供信息存储空间服务。
- 上一篇: Delphi判断一个字符是否为汉字的最佳方法
- 下一篇: Delphi中如何准确截取汉字