码迷,mamicode.com
首页 > 其他好文 > 详细

判断字符是否为整数、浮点型小数、字符串

时间:2016-08-17 09:03:58      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:

function TForm_fangyuanhuizong_tubiao.IsNumber(s: string): integer;     //判断是否为整数、浮点型小数、字符串
var  
i   :   integer;
begin
      result   :=   2;
      for   i   :=   1   to   Length(s)   do  
      begin  
          if   (s[i]   <   ‘0‘)   or   (s[i]   >   ‘9‘)   then  
          begin  
              if   (s[i]   =   ‘.‘)   and   (i   <>   1)   and   (i   <>   Length(s))   then  
              begin  
                  if   result   =   1   then  
                  begin  
                      result   :=   2;  
                      Exit;  
                  end;  
                  result   :=   1;  
                  continue;  
              end;  
   
              exit;  
          end;  
      end;  
      if   result   <>   1   then   result   :=   0;

      //返回   0   --   integer     1   --   double         2   ---string
end;

 

判断字符是否为整数、浮点型小数、字符串

标签:

原文地址:http://www.cnblogs.com/lantianhf/p/5778540.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!