ASP字符串转换为整形、双精度型、布尔
2018-09-06 11:18
阅读:472
Rem将字符串转换为整形数据
functiontoInteger(str,num)
str=trim(str)
ifstr=ornotisnumeric(str)then
toInteger=num
else
toInteger=clng(str)
endif
endfunction
Rem将字符串转换为双精度型数据
functiontoDouble(str)
str=trim(str)
ifstr=ornotisnumeric(str)then
toDouble=0.0
else
toDouble=cdbl(str)
endif
endfunction
Rem将字符串转换为布尔数据
functiontoBoolean(str)
str=lcase(trim(str))
ifstr=trueorstr=tthen
toBoolean=true
elseifisnumeric(str)then
ifclng(str)<>0thentoBoolean=true
else
toBoolean=false
endif
endfunction
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:ASP字符串转换为整形、双精度型、布尔
文章链接:http://soscw.com/index.php/essay/9233.html
文章标题:ASP字符串转换为整形、双精度型、布尔
文章链接:http://soscw.com/index.php/essay/9233.html
评论
亲,登录后才可以留言!