主頁 > 知識(shí)庫 > ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)

ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)

熱門標(biāo)簽:海南銀行智能外呼系統(tǒng)商家 上海浦東騰訊地圖標(biāo)注位置 許昌智能電銷機(jī)器人公司 澳大利亞城市地圖標(biāo)注 遼寧正規(guī)電銷機(jī)器人 電銷機(jī)器人違法了嗎 姜堰電銷機(jī)器人 遼寧銀行智能外呼系統(tǒng) 辰溪地圖標(biāo)注

下面跟大家分享2種不同函數(shù)的實(shí)現(xiàn)方式。

ASP將數(shù)字轉(zhuǎn)中文數(shù)字金額的函數(shù)一

% 
function Money(thenumber)
'dim Money,i,String1,String2,length,checkp'定義變量
dim one(),onestr()'定義數(shù)組
 
String1 = "零壹貳叁肆伍陸柒捌玖"
String2 = "萬仟佰拾億仟佰拾萬仟佰拾元角分厘毫"
 
checkp=instr(thenumber,".")'判斷是否含有小數(shù)位
if checkp>0 then
 thenumber=replace(thenumber,".","")'去除小數(shù)位
end if
length=len(thenumber) '取得數(shù)據(jù)長(zhǎng)度
redim one(length-1)'重新定義數(shù)組大小
redim onestr(length-1)'重新定義數(shù)組大小
for i=0 to length-1
 one(i)=mid(thenumber,i+1,1) '循環(huán)取得每一位的數(shù)字
 one(i)=mid(string1,one(i)+1,1)'循環(huán)取得數(shù)字對(duì)應(yīng)的大寫
 if checkp=0 then '不含有小數(shù)的數(shù)據(jù)其數(shù)字對(duì)應(yīng)的單位
  onestr(i)=mid(string2,14-length+i,1)
 else '含有小數(shù)的數(shù)據(jù)其數(shù)字對(duì)應(yīng)的單位
  onestr(i)=mid(string2,15-length+i+len(thenumber)-checkp,1)
 end if
 one(i)=one(i)onestr(i)'將數(shù)字與單位組合
 next
  Money=replace(join(one)," ","") '取得數(shù)組中所有的元素,并連接起來
  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 '顯示結(jié)果
 end function
Response.write Money(8200001)
%>

ASP阿拉伯?dāng)?shù)字轉(zhuǎn)中文數(shù)字

% 
'################################ 
'函數(shù)名:阿拉伯?dāng)?shù)字轉(zhuǎn)中文數(shù)字函數(shù) 
'################################ 
function chnumstr(num) 
num=int(abs(num))
strlen=len(num) 
for i=1 to strlen 
select case mid(num,i,1) 
case 1:chnum="一":case 2:chnum="二":case 3:chnum="三"
case 4:chnum="四":case 5:chnum="五" 
case 6:chnum="六":case 7:chnum="七":case 8:chnum="八"
case 9:chnum="九":case 0:chnum="零" 
end select 
chnumstr=chnumstrchnum 
if i=strlen-1 and mid(num,i,1)>0 then chnumstr=chnumstr"十" 
if i=strlen-2 and mid(num,i,1)>0 then chnumstr=chnumstr"百" 
if i=strlen-3 and mid(num,i,1)>0 then chnumstr=chnumstr"千" 
if i=strlen-4 and mid(num,i,1)>0 then chnumstr=chnumstr"萬" 
if i=strlen-5 and mid(num,i,1)>0 then chnumstr=chnumstr"十" 
if i=strlen-6 and mid(num,i,1)>0 then chnumstr=chnumstr"百" 
if i=strlen-7 and mid(num,i,1)>0 then chnumstr=chnumstr"千" 
if i=strlen-8 and mid(num,i,1)>0 then chnumstr=chnumstr"萬" 
next 
if left(chnumstr,1)="一" then chnumstr=right(chnumstr,len(chnumstr)-1)
if right(chnumstr,1)="零" then chnumstr=left(chnumstr,len(chnumstr)-1)
end function
Response.write chnumstr("84221213")
%>

到此這篇關(guān)于ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)的文章就介紹到這了,更多相關(guān)ASP 數(shù)字轉(zhuǎn)中文數(shù)字內(nèi)容請(qǐng)搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關(guān)文章希望大家以后多多支持腳本之家!

標(biāo)簽:崇左 撫州 晉城 威海 西藏 伊春 銅川 深圳

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)》,本文關(guān)鍵詞  ASP,將,數(shù)字,轉(zhuǎn),中文,大寫,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)》相關(guān)的同類信息!
  • 本頁收集關(guān)于ASP將數(shù)字轉(zhuǎn)中文數(shù)字(大寫金額)的函數(shù)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章