服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|JavaScript|易语言|

服务器之家 - 编程语言 - ASP教程 - ASP字符串转换为整形、双精度型、布尔

ASP字符串转换为整形、双精度型、布尔

2019-09-27 09:15asp教程网 ASP教程

asp可以轻松将字符串类型转化为其它类型的函数

Rem 将字符串转换为整形数据 
function toInteger(str,num) 
        str=trim(str) 
        if str="" or not isnumeric(str) then 
              toInteger=num 
        else 
              toInteger=clng(str) 
        end if 
end function 

Rem 将字符串转换为双精度型数据 
function toDouble(str) 
       str=trim(str) 
       if str="" or not isnumeric(str) then 
              toDouble=0.0 
      else 
              toDouble=cdbl(str) 
      end if 
end function 

Rem 将字符串转换为布尔数据 
function toBoolean(str) 
      str=lcase(trim(str)) 
      if str="true" or str="t" then 
            toBoolean=true 
     elseif isnumeric(str) then 
            if clng(str)<>0 then toBoolean=true 
     else 
           toBoolean=false 
    end if 
end function 

延伸 · 阅读

精彩推荐