亲宝软件园·资讯

展开

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

人气:0
想了解ASP字符串转换为整形、双精度型、布尔的相关内容吗,在本文为您仔细讲解ASP字符串转换的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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

加载全部内容

相关教程
猜你喜欢
用户评论