上一篇:我写ASP时常用到的一些函数 >>
金额转换算法
Dim str As String
str = Me.TextBox1.Text.Trim
Dim isfs As Boolean
If Left(str, 1) = "-" Then
isfs = True
str = str.Remove(0, 1)
Else
isfs = False
End If
Dim strpoint As String
Dim point() As String
Dim j As Int16
Dim jj() As String
Dim jjj As String
jjj = ""
If str.IndexOf(".") <> -1 Then
point = Split(str, ".", -1, CompareMethod.Text)
str = point(0)
strpoint = point(1)
ReDim jj(strpoint.Length - 1)
For j = 0 To strpoint.Length - 1
jj(j) = Left(strpoint, 1)
strpoint = Right(strpoint, strpoint.Length - 1)
jjj = jjj + convert(jj(j))
Next
End If
Dim strcode As String
strcode = ""
While strcode.Length <= str.Length
strcode = strcode & "2345" & "2346"
End While
strcode = "1" & strcode
strcode = Left(strcode, str.Length)
Dim i As Int16
Dim a() As String
Dim strcode1 As String
Dim countstr As Int16
Dim strcode2 As String
countstr = strcode.Length
ReDim a(strcode.Length - 1)
For i = 0 To countstr - 1
a(i) = Right(strcode, 1)
strcode = Left(strcode, strcode.Length - 1)
strcode1 = strcode1 & a(i)
strcode2 = strcode2 & "," & Mid(str, i + 1, 1) & Mid(strcode1, i + 1, 1)
Next
strcode2 = Right(strcode2, strcode2.Length - 1)
Dim newstr() As String
newstr = Split(strcode2, ",", -1, CompareMethod.Text)
Dim ii As Int16
Dim laststr As String
Dim strcode3 As String
Dim leftstr As String
Dim rightstr As String
For ii = 0 To newstr.Length - 1
strcode3 = newstr(ii)
leftstr = Left(strcode3, 1)
rightstr = Right(strcode3, 1)
rightstr = Replace(rightstr, rightstr, convert2(rightstr))
leftstr = Replace(leftstr, leftstr, convert(leftstr))
If leftstr = "零" And (rightstr = "拾" Or rightstr = "佰" Or rightstr = "仟") Then
rightstr = ""
End If
If leftstr = "零" And (rightstr = "万" Or rightstr = "亿") Then
leftstr = ""
End If
strcode3 = leftstr & rightstr
laststr = laststr & strcode3
Next
While laststr.IndexOf("佰零万") <> -1
laststr = laststr.Replace("零万", "万")
End While
While laststr.IndexOf("仟零零万") <> -1
laststr = laststr.Replace("零零万", "万")
End While
While laststr.IndexOf("零万") <> -1
laststr = laststr.Replace("零万", "零")
End While
While laststr.IndexOf("零亿") <> -1
laststr = laststr.Replace("零亿", "亿")
End While
While laststr.IndexOf("零零") <> -1
laststr = laststr.Replace("零零", "零")
End While
While Right(laststr, 1) = "零"
laststr = Left(laststr, laststr.Length - 1)
End While
If isfs = True Then
laststr = "负" & laststr
End If
If jjj = "" Then
TD2.InnerHtml = laststr
Else
If laststr = "" Then
TD2.InnerHtml = "零点" & jjj
Else
TD2.InnerHtml = laststr & "点" & jjj
End If
End If
End Sub
Function convert(ByVal num As String)
Select Case num
Case "1"
convert = "壹"
Case "2"
convert = "贰"
Case "3"
convert = "叁"
Case "4"
convert = "肆"
Case "5"
convert = "伍"
Case "6"
convert = "陆"
Case "7"
convert = "柒"
Case "8"
convert = "捌"
Case "9"
convert = "玖"
Case "0"
convert = "零"
End Select
End Function
Function convert2(ByVal num As String)
Select Case num
Case "1"
convert2 = ""
Case "2"
convert2 = "拾"
Case "3"
convert2 = "佰"
Case "4"
convert2 = "仟"
Case "5"
convert2 = "万"
Case "6"
convert2 = "亿"
End Select
End Function
下一篇:IIS防止文件下载完全手册(非更改文件名法) >>
相关文章:
- · 关于ASPNET用户的权限
- · 全选删除特效
- · Set Up Client Certificates
- · 我写的第一个ASP.NET组件
- · ASP程序中同一个用户不允许同时登陆两次
- · 随机生成密码函数
- · 动态创建TABLE的行与列
- · 如何在Web页面上直接打开、编辑、创建Office文档
- · 取得的IP/用户名等信息
- · Flash 和 ASP / PHP 以及 javascript 的交互
- · 自定义分页UserControl 分享及探讨!
- · ASP 验证码的程序及原理
- · ViewState 剖析(翻译兼笔记)
- · 存储过程介绍及asp存储过程的使用
- · 用CSS实现的固定表头的HTML表格
- · ASP中页面限权访问的几种方法
- · 用Web Services服务实现文件上传
- · ASP六大对象介绍
- · 如何更改表的字段名?
- · 一份ASP内存的释放的实验报告
- · 如何获取设置图片大小
- · 按比例缩小图片(无组件)
- · 网站开发规范及流程v1.0
- · asp+存储过程的使用
- · 2个简单的检测外部提交函数
- · 查看服务器Application/Session变量工具
- · ASP ,IP地址分段计算
- · ASP提速技巧五则
- · 利用ASP远程获取内容
- · ASP漏洞及安全建议
- · 闰年的判别
- · 计算文件下载时间
- · ASP的函数详解
- · 一个取图片尺寸的类,支持jpg,gif,png
- · JS错误代码解释大全
- · 窗口最大化的严格定义
- · 一個簡單的驗証碼
- · 17种正则表达式
