Delphi判斷字符串是否是數字、字母、大小寫字母


function IsNumberic(Vaule:String):Boolean;   //判斷Vaule是不是數字
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;   //判斷Vaule 是不是大寫字母
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;  //判斷Vaule 是不是小寫字母
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;    //判斷Vaule 是不是字母
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;

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM