Delphi 判断字符串是否是数字大小字母小写字母纯字母组成

Posted guorongtao

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Delphi 判断字符串是否是数字大小字母小写字母纯字母组成相关的知识,希望对你有一定的参考价值。

 

Delphi 判断字符串是否是数字、大小字母、小写字母、纯字母组成

 //判断字符串是否是数字 ,返回布尔值
function IsNumberic(Vaule:String):Boolean;  
var
i:integer;
begin
result:=true;   //设置返回值为 是(真)
Vaule:=trim(Vaule);  //去空格
  for i:=1 to length(Vaule) do  //准备循环
    begin
      if not (Vaule[i] in [‘0‘..‘9‘]) then  //如果Vaule的第i个字不是0-9中的任一个
        begin
          result:=false;  //返回值 不是(假)
          exit;  //退出函数
        end;
    end;
end;

//判断字符串是否是大写字母,返回布尔值
function IsUpperCase(Vaule:String):Boolean;   
var
i:integer;
begin
result:=true;  //设置返回值为 是
Vaule:=trim(Vaule);   //去空格
  for i:=1 to length(Vaule) do   //准备循环
    begin
      if not (Vaule[i] in [‘A‘..‘Z‘]) then  //如果Vaule的第i个字不是A-Z中的任一个
        begin
          result:=false;  //返回值 不是
          exit;  //退出函数
        end;
    end;
end;

 //判断字符串是否是小写字母,返回布尔值
function IsLowerCase(Vaule:String):Boolean; 
var
i:integer;
begin 
result:=true;   //设置返回值为 是
Vaule:=trim(Vaule);   //去空格
  for i:=1 to length(Vaule) do   //准备循环
    begin
      if not (Vaule[i] in [‘a‘..‘z‘]) then   //如果Vaule的第i个字不是a-z中的任一个
        begin
          result:=false;   //返回值 不是
          exit;   //退出函数
        end;
    end;
end;

 //判断 字符串 是不是由字母组成,返回布尔值
function IsEnCase(Vaule:String):boolean;   
var
i:integer;
begin 
result:=true;   //设置返回值为 是
Vaule:=trim(Vaule);   //去空格
  for i:=1 to length(Vaule) do   //准备循环
    begin
      if (not (Vaule[i] in [‘A‘..‘Z‘])) or
         (not (Vaule[i] in [‘a‘..‘z‘])) then   //如果Vaule的第i个字不是A-Z或者a-z中的任一个
        begin
          result:=false;   //返回值 不是
          exit;   //退出函数
        end;
    end;
end;

  

 

 

 

创建时间:2020.07.06  更新时间:

 

以上是关于Delphi 判断字符串是否是数字大小字母小写字母纯字母组成的主要内容,如果未能解决你的问题,请参考以下文章

PAT乙级 (1033 旧键盘打字 (20分)(字母大小写转换判断是否为大小写字母数字))

python判断字符串是字母 数字 大小写

python 判断字符串是字母 数字 大小写还是空格

js密码正则表达式:要求包含大小写字母、数字和特殊符号,8~16位

js密码正则表达式:要求包含大小写字母、数字和特殊符号,8~16位

python 将英文字母转成对应的ASCII数字