1. 首页
  2. 编程语言
  3. 其他
  4. Delphi IsLower判断是否包括大小写字母.rar

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

上传者: 2020-02-19 00:04:58上传 RAR文件 7KB 热度 40次
本实例主要是完成判断字符串中是否包括有大小写字母,判断字符串中是否有小写字母,使用了Delphi中的IsLower来判断,使用showmessage来显示判断结果:  begin  islow:=0;  s:=Edit1.Text;  n:=length(s);  fori:=0ton-1do  ifIsLower(s[i])then  begin  islow:=1;  break;  end;  ifislow>0then  showmessage('该字符串
用户评论