改进一下asp自带的formatNumber函数
2018-09-06 10:33
阅读:678
asp的formatNumber再处理类似25/5的值时,结果是5.00处理类似28/8的值时,结果是3.50
改进一下,去掉没用的0让结果分别是5和3.5
复制代码 代码如下:
Functionfm(nb)
IfIsNumeric(nb)Then
Dima
a=FormatNumber(nb,2,-1)
IfRight((a+),2)=00Then
fm=CLng(a)
Else
fm=FormatNumber(nb,1,-1)
Endif
Else
fm=0
Endif
EndFunction
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:改进一下asp自带的formatNumber函数
文章链接:http://soscw.com/index.php/essay/8657.html
文章标题:改进一下asp自带的formatNumber函数
文章链接:http://soscw.com/index.php/essay/8657.html
评论
亲,登录后才可以留言!