DBMNG数据库管理与应用

独立思考能力,对于从事科学研究或其他任何工作,都是十分必要的。
当前位置:首页 > 服务器配置 > IIS&ASP

asp人民币大小写转换代码

 <%
  call Money(9999999999999.99)
  function Money(thenumber)'可达到万亿位转换
    'dim Money,i,String1,String2,length,checkp'定义变量
    dim one(),onestr()'定义数组 
    String1 = "零壹贰叁肆伍陆柒捌玖"
    String2 = "万仟佰拾亿仟佰拾万仟佰拾元角分厘毫" 
    checkp=instr(thenumber,".")'判断是否含有小数位
    if checkp<>0 then
    thenumber=replace(thenumber,".","")'去除小数位
    end if 
    length=len(thenumber) '取得数据长度
    redim one(length-1)'重新定义数组大小
    redim onestr(length-1)'重新定义数组大小 

    for i=0 to length-1 
      one(i)=mid(thenumber,i+1,1) '循环取得每一位的数字
      one(i)=mid(string1,one(i)+1,1)'循环取得数字对应的大写 
      if checkp=0 then   '不含有小数的数据其数字对应的单位
        onestr(i)=mid(string2,14-length+i,1) 
      else             '含有小数的数据其数字对应的单位
        onestr(i)=mid(string2,15-length+i+len(thenumber)-checkp,1)
      end if
        one(i)=one(i)&onestr(i)'将数字与单位组合
    next 
    Money=replace(join(one)," ","") '取得数组中所有的元素,并连接起来
    Money=replace(Money,"零元","元") 
    Money=replace(Money,"零万","万") 
    Money=replace(Money,"零亿","亿")
    Money=replace(Money,"零仟","零")
    Money=replace(Money,"零佰","零") 
    Money=replace(Money,"零拾","零") 

   do while not instr(Money,"零零")=0 
      Money=replace(Money,"零零","零")
   loop 

  response.write Money  '显示结果
  end  function
  %>
本站文章内容,部分来自于互联网,若侵犯了您的权益,请致邮件chuanghui423#sohu.com(请将#换为@)联系,我们会尽快核实后删除。
Copyright © 2006-2023 DBMNG.COM All Rights Reserved. Powered by DEVSOARTECH            豫ICP备11002312号-2

豫公网安备 41010502002439号