Delphi IsLower判断是否包括大小写字母.rar

时间:2022-07-30 05:26:37
【文件属性】:

文件名称:Delphi IsLower判断是否包括大小写字母.rar

文件大小:7KB

文件格式:RAR

更新时间:2022-07-30 05:26:37

Delphi源码-字符处理

本实例主要是完成判断字符串中是否包括有大小写字母,判断字符串中是否有小写字母,使用了Delphi中的IsLower来判断,使用showmessage来显示判断结果:   begin    islow := 0;    s := Edit1.Text;    n := length(s);    for i:=0 to n-1 do    if IsLower(s[i]) then    begin    islow := 1;    break;    end;    if islow>0 then    showmessage('该字符串中有小写字母')    else    showmessage('该字符串中没有小写字母');   end;


【文件预览】:
codesc.net
----判断字符串中是否有小写字母()
--------Project1.dof(2KB)
--------Unit1.dcu(4KB)
--------Unit1.dfm(916B)
--------Project1.cfg(461B)
--------Project1.dpr(188B)
--------Unit1.pas(953B)
--------Project1.res(876B)
--------Unit1.ddp(51B)

网友评论