最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
将阿拉伯数字日期转换为中文数字日期格式(ASP)
时间:2022-06-30 10:19:56 编辑:袖梨 来源:一聚教程网
刚才看到一个兄弟提的问题,做完了才发现已经结贴,郁闷呀~~
只是看到这个东西还算有用,所以贴出来自赏呵呵
思路:
一开始想到用select,用for循环将每位阿拉伯数字转换成对应的中文,然后想到其实可以用数组,这样子比较少些代码,毕竟0~9,可以对应起来,可是~问题出现了,对于10~31,要变成“贰拾壹” 这样格式,呵呵~加一个判断,嗯~11可不能转换成“壹拾壹”,在加判断
呵呵~基本好了,还需要判断是不是数字呢,ok!这下子应该是可以over了!
<%
t=Now()
Function datetostr(t)
Dim strYear,strMonth,strDay,strResult
strYear = Year(t)
strMonth = Month(t)
strDay = Day(t)
datetostr = casei(strYear) & "年" & casei(strMonth) & "月" & casei(strDay) & "日"
End Function
Function casei(i)
Dim arrNum,arrCNNum
If(IsNumeric(i))Then
arrNum = Split(i)
arrCNNum=Split("零,壹,贰,叁,肆,伍,陆,柒,捌,玖",",")
If( i<10 OR i>31)Then
For it=1 To Len(i)
strResult = strResult & arrCNNum(CInt(Mid(i,it,1)))
Next
ElseIf(i > 9 AND i < 12)Then
strResult = "拾" & arrCNNum(CInt(Mid(i,2,1)))
Else
strResult = arrCNNum(CInt(Mid(i,1,1))) & "拾" & arrCNNum(CInt(Mid(i,2,1)))
End If
End If
casei = strResult
End Function
Response.Write(datetostr(t))
%>
只是看到这个东西还算有用,所以贴出来自赏呵呵
思路:
一开始想到用select,用for循环将每位阿拉伯数字转换成对应的中文,然后想到其实可以用数组,这样子比较少些代码,毕竟0~9,可以对应起来,可是~问题出现了,对于10~31,要变成“贰拾壹” 这样格式,呵呵~加一个判断,嗯~11可不能转换成“壹拾壹”,在加判断
呵呵~基本好了,还需要判断是不是数字呢,ok!这下子应该是可以over了!
<%
t=Now()
Function datetostr(t)
Dim strYear,strMonth,strDay,strResult
strYear = Year(t)
strMonth = Month(t)
strDay = Day(t)
datetostr = casei(strYear) & "年" & casei(strMonth) & "月" & casei(strDay) & "日"
End Function
Function casei(i)
Dim arrNum,arrCNNum
If(IsNumeric(i))Then
arrNum = Split(i)
arrCNNum=Split("零,壹,贰,叁,肆,伍,陆,柒,捌,玖",",")
If( i<10 OR i>31)Then
For it=1 To Len(i)
strResult = strResult & arrCNNum(CInt(Mid(i,it,1)))
Next
ElseIf(i > 9 AND i < 12)Then
strResult = "拾" & arrCNNum(CInt(Mid(i,2,1)))
Else
strResult = arrCNNum(CInt(Mid(i,1,1))) & "拾" & arrCNNum(CInt(Mid(i,2,1)))
End If
End If
casei = strResult
End Function
Response.Write(datetostr(t))
%>
相关文章
- 光遇12.23每日任务怎么做 光遇12月23日每日任务做法攻略 12-23
- 光遇12.23大蜡烛在哪里 光遇12月23日大蜡烛位置攻略 12-23
- 光遇12.23免费魔法有什么 光遇12月23日免费魔法收集攻略 12-23
- 《流放之路2》寻找熔炉任务攻略分享 12-23
- 《流放之路2》德雷文打法技巧分享 12-23
- 《流放之路2》永恒裁判者德雷文具体位置介绍 12-23