白开心
IT博客
::
首页
:: ::
联系
::
聚合
::
管理
::
9 随笔 :: 76 文章 :: 28 评论 :: 0 Trackbacks
<
2024年12月
>
日
一
二
三
四
五
六
24
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
公告
独坐在路边街角,冷风吹醒,默默地伴着我的孤影。
常用链接
我的随笔
我的评论
我参与的随笔
留言簿
(12)
给我留言
查看公开留言
查看私人留言
文章分类
.Net(学习ing...)(39)
(rss)
Asp+vbScript(14)
(rss)
JavaScript(14)
(rss)
T-SQL(8)
(rss)
经典收藏(8)
(rss)
设计模式
(rss)
文章档案
2013年4月 (1)
2013年3月 (1)
2012年7月 (1)
2012年4月 (1)
2011年10月 (1)
2011年8月 (1)
2011年3月 (1)
2011年2月 (1)
2011年1月 (1)
2010年9月 (1)
2010年6月 (1)
2010年4月 (2)
2010年1月 (1)
2009年11月 (1)
2009年10月 (6)
2009年9月 (3)
2009年8月 (2)
2009年5月 (1)
2008年10月 (2)
2008年9月 (2)
2008年7月 (2)
2008年6月 (1)
2008年3月 (1)
2008年2月 (1)
2008年1月 (1)
2007年12月 (5)
2007年11月 (4)
2007年10月 (2)
2007年9月 (2)
2007年7月 (1)
2007年6月 (2)
2007年4月 (2)
2007年1月 (1)
2006年12月 (1)
2006年11月 (2)
2006年8月 (1)
2006年7月 (1)
2006年5月 (2)
2006年4月 (1)
2006年2月 (1)
2006年1月 (1)
2005年12月 (10)
相册
PhotoShop Study For HuangHuaXiang
我的相册
收藏夹
.NET(1)
(rss)
其他类别
(rss)
搜索
最新评论
1. re: JQUERY的表单异步提交[未登录]
1111111
--111
2. re: JQUERY的表单异步提交
eqedqedasd
--123
3. re: 委托和匿名函数
评论内容较长,点击标题查看
--bracelet shopping
4. re: 递归查询
您好!你的在我这里怎么执行不了啊!
--小陈
5. re: JS操作Xml的相关方法[未登录]
不能保丰到服务器上?
--11
阅读排行榜
1. 窦房折返性心动过速(928)
2. ∷∷∷∷男人感悟一百条∷∷∷∷(710)
3. 人生致命的八个经典问题(657)
4. 秋天不回来(570)
5. 圣诞(467)
评论排行榜
1. 圣诞(0)
2. 人生致命的八个经典问题(0)
3. ∷∷∷∷男人感悟一百条∷∷∷∷(0)
4. 窦房折返性心动过速(0)
5. 秋天不回来(0)
数字转换成中文(Asp)
'
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
'
数字转换成文字格式
'
2005-10-27号,黄杰
'
主函数:Transfer(Str)
Function
Transfer(Str)
'
主函数,调用方法 Transfer(1001) 或者 Transfer("1000000000000000000000000000000000000001")
'
经过强度测试,数字只能规定范围以内,字符型则无限长度均可
If
Not
IsNumeric
(Str)
Then
Call
AlertAndBack(
"
请输入一个有效数字
"
)
Dim
StrLength
StrLength
=
Len
(
Trim
(Str))
Select
Case
StrLength
Case
1
,
2
,
3
,
4
Response.Write(WriteThound(Str))
Case
5
,
6
,
7
,
8
Response.Write(WriteMillon(Str))
Case
Else
Response.Write(WriteBillon(Str))
End
Select
End Function
Sub
AlertAndBack(Str)
Response.Write(
"
<script language=javascript>alert('
"
&
Str
&
"
');history.go(-1);</script>
"
)
Response.End()
End Sub
Function
WriteThound(Str)
'
处理1-4位情况,1234
Dim
Zero
For
i
=
1
to
Len
(Str)
ThisNum
=
Mid
(Str,i,
1
)
If
ThisNum
=
0
Then
If
i
<>
Len
(Str)
and
i
<>
Zero
+
1
Then
WriteThound
=
WriteThound
&
"
零
"
Zero
=
i
End
If
Else
WriteThound
=
WriteThound
&
ReplaceNum(ThisNum)
&
Unit(
Len
(Str)
-
i
+
1
)
End
If
Next
If
Right
(WriteThound,
1
)
=
"
零
"
Then
WriteThound
=
Left
(WriteThound,
Len
(WriteThound)
-
1
)
'
去除当后面几个零时写出的零
End Function
Function
WriteMillon(Str)
'
处理5-8位情况
MillonNum
=
Left
(Str,
Len
(Str)
-
4
)
ThoundNum
=
Right
(Str,
4
)
AllZero
=
True
For
i
=
1
to
Len
(MillonNum)
if
Mid
(MillonNum,i,
1
)
<>
0
Then
AllZero
=
False
:
Exit
For
Next
If
(AllZero)
Then
WriteMillon
=
WriteThound(ThoundNum)
Else
WriteMillon
=
WriteThound(MillonNum)
&
"
万
"
&
WriteThound(ThoundNum)
End
If
End Function
Function
WriteBillon(Str)
'
处理亿位以上情况
StrLength
=
Len
(Str)
FieldNum
=
StrLength
\
8
If
FieldNum
*
8
<
StrLength
Then
FieldNum
=
FieldNum
+
1
'
每8位一个分段,计算多少个分段
'
123,12345678,23456789
FirstFieldLength
=
StrLength
-
(FieldNum
-
1
)
*
8
For
i
=
1
To
FieldNum
If
i
=
1
Then
ThisField
=
Left
(Str,FirstFieldLength)
Else
ThisField
=
Mid
(Str,(i
-
2
)
*
8
+
1
+
FirstFieldLength,
8
)
End
If
If
i
=
1
And
Len
(ThisField)
<
5
Then
WriteBillon
=
WriteThound(ThisField)
&
"
亿
"
ElseIf
i
=
FieldNum
Then
WriteBillon
=
WriteBillon
&
WriteMillon(ThisField)
Else
WriteBillon
=
WriteBillon
&
WriteMillon(ThisField)
&
"
亿
"
End
If
Next
End Function
Function
Unit(Num)
Select
Case
Num
Case
1
Unit
=
""
Case
2
Unit
=
"
十
"
Case
3
Unit
=
"
百
"
Case
4
Unit
=
"
千
"
Case
5
Unit
=
"
万
"
End
Select
End Function
Function
ReplaceNum(Str)
Select
Case
Str
Case
0
ReplaceNum
=
"
零
"
Case
1
ReplaceNum
=
"
一
"
Case
2
ReplaceNum
=
"
二
"
Case
3
ReplaceNum
=
"
三
"
Case
4
ReplaceNum
=
"
四
"
Case
5
ReplaceNum
=
"
五
"
Case
6
ReplaceNum
=
"
六
"
Case
7
ReplaceNum
=
"
七
"
Case
8
ReplaceNum
=
"
八
"
Case
9
ReplaceNum
=
"
九
"
End
Select
End Function
'
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@
posted on 2005-12-11 21:28
白开心
阅读(599)
评论(0)
编辑
收藏
引用
所属分类:
Asp+vbScript
只有注册用户
登录
后才能发表评论。
Powered by:
IT博客
Copyright © 白开心