zoukankan      html  css  js  c++  java
  • 判断字符是否为整数、浮点型小数、字符串

    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;

  • 相关阅读:
    前进篇
    2014年12月14日记
    转载了两篇别人写的话语
    想好了,也决定了
    活着
    c#字典排序
    插值转向
    unity手游使用terrian注意事项
    委托delegate 泛型委托action<> 返回值泛型委托Func<> 匿名方法 lambda表达式 的理解
    推荐博客关于uniy
  • 原文地址:https://www.cnblogs.com/lantianhf/p/5778540.html
Copyright © 2011-2022 走看看