格式化小数(去尾法,不四舍五除)
评论/浏览(0/0)发表时间:2007年5月14日 14时12分 http://user.qzone.qq.com/9655814
'适用:asp
'作用:返回数值的整数部分(负数带负号返回)
Function formattail(re)
If IsNumeric(re) then
if re<0 then
formattail=-int(abs(re))
else
formattail=int(re)
end if
else
formattail="当前变量不是数值类型,不予以转化。"
end If
end Function
'调用方法: (该函数参数可以为变量)
response.write formattail("0.315") '返回 0
response.write formattail("0.815") '返回 0
response.write formattail("-0.315") '返回 0
response.write formattail("-0.815") '返回 0
'在不被<% %>包含的地方 直接 <%=formattail("-0.815") %>