用ASP實現簡單的繁簡轉換

來源:互聯網
上載者:User

標籤:style   c   tar   ext   color   a   

用ASP實現簡單的繁簡轉換

國際化似乎是一個非常流行的口號了,一個網站沒有英文版至少也要弄個繁體版,畢竟都是漢字,翻譯起來不會那麼麻煩:P

一般的繁簡轉換是使用字典,通過GB的內碼算出BIG5字元在字典中的位置,讀取顯示之,用fso應該可以實現。這裡介紹的方法思路更簡單一些,用Dictionary對象,就是字典,呵呵,dicGb2Big5(gb)就是對應的BIG5。比起計算內碼再按照位置讀取字元簡單的多吧:)

為了減少開銷,把字典放在Application中,即在global.asa中建立兩個application的字典對象

<OBJECT id=objGb2Big5 progid="Scripting.Dictionrary" runat="server" scope="application"> 
</OBJECT> 
<OBJECT id=objBig52Gb progid="Scripting.Dictionrary" runat="server" scope="application"> 
</OBJECT>

在application_onstart中給字典添加項目

…… 
objGb2Big5.Add "啊", "擺" 
objGb2Big5.Add "阿", "" 
objGb2Big5.Add "埃", "甁" 
……

…… 
objBig52Gb.Add "擺", "啊" 
objBig52Gb.Add "", "阿" 
objBig52Gb.Add "甁", "埃" 
……

字典項很多,就不都寫了

做好了字典,使用的時候只要查一下就行了:)

function gb2big5(str) 
dim i, l, k, t, rtn 
l = len(str) 
rtn="" 
for i=1 to l 
k = mid(str, i, 1) 
if ascw(k)>=0 and ascw(k)<128 then 
t = k 
else 
if objGb2Big5.Exists(k) then 
t = objGb2Big5.Item(k) 
else 
t = " " 
end if 
end if 
rtn = rtn & t 
next 
gb2big5 = rtn 
end function

function big52gb(str) 
dim i, l, k, t, rtn 
l = len(str) 
rtn="" 
for i=1 to l 
k = mid(str, i, 1) 
if ascw(k)>=0 and ascw(k)<128 then 
t = k 
else 
if objBig52Gb.Exists(k) then 
t = objBig52Gb.Item(k) 
else 
t = " " 
end if 
end if 
rtn = rtn & t 
next 
big52gb = rtn 
end function

測試一下看看吧

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.