asp如何实现人民币的大写转换?

时间:2010-05-24 18:27:00 

具体代码和实现方法见下:

第一个办法,这个程序可以进行万亿以下的货币金额转换(够用的了吧),其中汉字与数字均按一位计:

Function AtoC(a As Currency) As String

     ' 定义两个字符串,A的值最多是两位小数, 
    Dim String1 As String  
' 如下定义
    Dim String2 As String  
' 如下定义
    Dim String3 As String  
' 从原A值中取出的值
    Dim I As Integer       
 ' 循环变量
    Dim J As Integer        
' A的值乘以100的字符串长度
    Dim Ch1 As String      
' 数字的汉语读法
    Dim Ch2 As String      
' 数字位的汉字读法
    Dim nZero As Integer    
' 用来计算连续的非零数是几个
    
    String1 = "零壹贰叁肆伍陆柒捌玖"
    String2 = "万仟佰拾亿仟佰拾万仟佰拾元角分"
    'MsgBox CStr(a * 100)
    If InStr(1, CStr(a * 100), ".") <> 0 Then
        err.Raise 5000, , "该函数( AtoC() )只转换两位小数以内的数值!"
    End If
    
    J = Len(CStr(a * 100))
    String2 = Right(String2, J)        
' 取出对应位数的STRING2的值
    
    For I = 1 To J
        String3 = Mid(a * 100, I, 1)    
' 取出需转换的某一位的值
        If String3 <> "0" Then
            Ch1 = Mid(String1, Val(String3) + 1, 1)
            Ch2 = Mid(String2, I, 1)
            nZero = nZero + 1          
' 表示本位不为零
        Else
            If nZero <> 0 Or I = J - 9 Or I = J - 5 Or I = J - 1 Then
                If Right(AtoC, 1) = "零" Then AtoC = Left(AtoC, Len(AtoC) - 1)
                Ch1 = "零"
            Else
                Ch1 = ""
            End If
                                   
If I = J - 10 Then
' 如果转换的数值需要扩大,则要改动以下表达式 I 的值
                Ch2 = "亿"
            ElseIf I = J - 6 Then
                If nZero <> 0 Then
                    Ch2 = "万"
'                    nZero = 0
                End If
            ElseIf I = J - 2 Then
                Ch2 = "元"
            ElseIf I = J Then
                Ch2 = "整"
            Else
                Ch2 = ""
            End If
            nZero = 0
        End If
        
        AtoC = AtoC & Ch1 & Ch2
    Next I
        AtoC = Replace(AtoC, "零元", "元")
        AtoC = Replace(AtoC, "零万", "万")
        AtoC = Replace(AtoC, "零亿", "亿")
        AtoC = Replace(AtoC, "零整", "整")
       ' 以上将多余的零去掉
    
End Function

第二个办法:照下面写就成了!

<%
dim str(9)
str(0)="零"
str(1)="壹"
str(2)="贰"
str(3)="叁"
str(4)="肆"
str(5)="伍"
str(6)="陆"
str(7)="柒"
str(8)="捌"
str(9)="玖"
aa=Request.form("source")
hh=formatnumber(aa,2,-1)
aa=replace(hh,".","")
aa=replace(aa,",","")
for i=1 to len(aa)
    s=mid(aa,i,1)
  mynum=str(s)
  select case(len(aa)+1-i)
    case 1: k= mynum&"分"
    case 2: k= mynum&"角"
    case 3: k= mynum&"元"
    case 4: k= mynum&"拾"
    case 5: k= mynum&"佰"
    case 6: k= mynum&"仟"
    case 7: k= mynum&"万"
    case 8: k= mynum&"拾"
    case 9: k= mynum&"佰"
    case 10: k= mynum&"仟"
  end select
    m=m&k
next
%>
  
<html>
<head>
<title>asp之家 - 数字大小写转换 -aspxhome.com</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<!--
Elseif(s=".") then
    n=m
    i=i+2
    for j=i to len(aa)
      s=mid(aa,i,1)
        mynum=str(s)
      select case(len(aa)+1-i)
      case 1: p= mynum&"分"
      case 2: p= mynum&"角"
      end select
      m=m&p
    next
-->
<body bgcolor="#FFFFFF">
<form method="post"  name="forma">
  <input type="text" name="source" value="<%=hh%>">
  =
  <input type="text" name="result" value="<%=m%>" size="40">
<input type="submit" name="Submit" value="开始转换" >
</form>
</body>
</html>

标签:人民币,大写,asp
0
投稿

猜你喜欢

  • pycharm中如何自定义设置通过“ctrl+滚轮”进行放大和缩小实现方法

    2022-03-06 05:52:27
  • Pycharm之如何安装cv2 [python3.6]

    2023-01-15 09:56:45
  • django反向解析URL和URL命名空间的方法

    2022-05-28 20:35:09
  • python实现删除列表中某个元素的3种方法

    2023-02-08 16:01:59
  • Python+Opencv身份证号码区域提取及识别实现

    2021-10-01 17:32:13
  • 利用JS提交表单的几种方法和验证(必看篇)

    2023-08-17 16:43:22
  • Python入门篇之面向对象

    2023-10-19 16:31:51
  • oracle 存储过程和触发器复制数据

    2024-01-19 19:27:46
  • 把论坛从ACCESS转成SQL版本

    2009-04-13 15:59:00
  • MySQL数据库远程访问权限如何打开(两种方法)

    2024-01-26 12:58:48
  • PHPMailer发送HTML内容、带附件的邮件实例

    2024-05-11 10:07:43
  • python命令行工具Click快速掌握

    2021-08-13 08:03:58
  • 漂亮的title提示信息

    2008-08-12 12:51:00
  • oracle用什么SQL语句判断表存不存在

    2010-07-23 13:23:00
  • 小米正式开源 SQL 智能优化与改写工具 SOAR

    2024-01-20 09:34:56
  • python实现大量图片重命名

    2023-12-26 07:20:56
  • git版本库介绍及本地创建的三种场景方式

    2023-07-11 11:22:18
  • tensorflow 实现数据类型转换

    2023-09-20 11:35:47
  • Flask 使用类组织配置详情

    2023-06-15 02:31:30
  • 当设计师遇上前端开发

    2009-05-04 14:05:00
  • asp之家 网络编程 m.aspxhome.com