• 企业400电话
  • 微网小程序
  • AI电话机器人
  • 电商代运营
  • 全 部 栏 目

    企业400电话 网络优化推广 AI电话机器人 呼叫中心 网站建设 商标✡知产 微网小程序 电商运营 彩铃•短信 增值拓展业务
    asp下返回以千分位显示数字格式化的数值
    %
    '******************************
    '函数:comma(str)
    '参数:str,待处理的数字
    '作者:阿里西西
    '日期:2007/7/12
    '描述:返回以千分位显示数字格式化的数值
    '示例:%=comma("120300")%>
    '******************************
    function comma(str) 
    if not(isnumeric(str)) or str = 0 then 
    result = 0 
    elseif len(fix(str))  4 then 
    result = str 
    else 
    pos = instr(1,str,".") 
    if pos > 0 then 
    dec = mid(str,pos) 
    end if 
    res = strreverse(fix(str)) 
    loopcount = 1 
    while loopcount = len(res) 


    tempresult = tempresult + mid(res,loopcount,3) 
    loopcount = loopcount + 3 
    if loopcount = len(res) then 
    tempresult = tempresult + "," 
    end if 
    wend 
    result = strreverse(tempresult) + dec 
    end if 
    comma = result 
    end function 
    %>
    上一篇:asp 下产生任意位数随机密码的代码
    下一篇:asp重定向页面的方法总结
  • 相关文章
  • 

    © 2016-2020 巨人网络通讯 版权所有

    《增值电信业务经营许可证》 苏ICP备15040257号-8

    asp下返回以千分位显示数字格式化的数值 asp,下,返回,以,千分位,显示,