关键词搜索

源码搜索 ×
×

如何把一长串数字分位显示?

发布2016-06-02浏览1694次

详情内容

    见下:
<%
Function  Comma(str)
If  Not(IsNumeric(str))  Or  str  Then
    Result  0
ElseIf  Len(Fix(str))  Then
    Result  str
Else
    Pos  Instr(1,str,".")
    If  Pos  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
%>
<html>
<body>
<%
aLongNumber  "12345678"
%>
原来的数字:  <%=aLongNumber%><br>
用逗号格式化后:  <%=Comma(aLongNumber)%>
</body>
</html>

相关技术文章

点击QQ咨询
开通会员
返回顶部
×
微信扫码支付
微信扫码支付
确定支付下载
请使用微信描二维码支付
×

提示信息

×

选择支付方式

  • 微信支付
  • 支付宝付款
确定支付下载