当前位置: 移动技术网 > IT编程>开发语言>其他编程 > 如何把一长串数字分位显示?

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

2017年12月08日  | 移动技术网IT编程  | 我要评论
<%function comma(str)if not(isnumeric(str)) or str =

<%
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
%>
<html>
<body>
<%
alongnumber = "12345678"
%>
原来的数字: <%=alongnumber%><br>
用逗号格式化后: <%=comma(alongnumber)%>
</body></html>

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网