主页 > 知识库 > ASP字符串转换为整形、双精度型、布尔

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

热门标签:团购网站 Mysql连接数设置 Linux服务器 服务器配置 科大讯飞语音识别系统 阿里云 银行业务 电子围栏
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

标签:萍乡 蚌埠 衢州 广元 衡水 江苏 枣庄 大理

巨人网络通讯声明:本文标题《ASP字符串转换为整形、双精度型、布尔》,本文关键词  ;如发现本文内容存在版权问题,烦请提供相关信息告之我们,我们将及时沟通与处理。本站内容系统采集于网络,涉及言论、版权与本站无关。
  • 相关文章
  • 收缩
    • 微信客服
    • 微信二维码
    • 电话咨询

    • 400-1100-266