全角半角轉(zhuǎn)換代碼_ASP教程
推薦:ASP調(diào)用web servicesASP調(diào)用web services % Function CallWebServices(sUrl, sMethodName, soapMessage, XmlString) CallWebServices = false Set xmlhttp = CreateObject(MSXML2.XMLHTTP) xmlhttp.Open POST,sUrl, False xmlhttp.SetRequestHeader Content-Type,text/xm
javascript轉(zhuǎn)換:
<SCRIPT>
/*
****************************
* 參數(shù)說明:
* str:要轉(zhuǎn)換的字符串
* flag:標(biāo)記,為0時半轉(zhuǎn)全,為非0時全轉(zhuǎn)半
* 返回值類型:字符串
****************************
*/
function DBC2SBC(str,flag) {
var i;
var result='';
if (str.length<=0) {alert('字符串參數(shù)出錯');return false;}
for(i=0;i<str.length;i++)
{ str1=str.charCodeAt(i);
if(str1<125&&!flag)
result+=String.fromCharCode(str.charCodeAt(i)+65248);
else
result+=String.fromCharCode(str.charCodeAt(i)-65248);
}
return result;
}
</script>
//示例:
<script>
alert(DBC2SBC("AAabc",0));
document.write(DBC2SBC("abcdefg",0))
</script>
asp轉(zhuǎn)換:
<%
'****************************
'* 參數(shù)說明:
'* str:要轉(zhuǎn)換的字符串
'* flag:標(biāo)記,為0時半轉(zhuǎn)全,為非0時全轉(zhuǎn)半
'* 返回值類型:字符串
'****************************
function DBC2SBC(str,flag)
dim i
if len(str)<=0 then
msgbox '字符串參數(shù)出錯'
exit function
end if
for i=1 to len(str)
str1=asc(mid(str,i,1))
if str1>0 and str1<=125 and not flag then
dbc2sbc=dbc2sbc&chr(asc(mid(str,i,1))-23680)
else
dbc2sbc=dbc2sbc&chr(asc(mid(str,i,1))+23680)
end if
next
end function
%>
分享:asp控制xml數(shù)據(jù)庫的6條實用代碼NO.1--建立一個XML數(shù)據(jù)庫data.xm ?xml version=1.0? records record namecaca/name qq154222225/qq emailroot@3ney.com/email /record records NO.2--建立對象CreateObject 建立data.xml的對象先 set xmldoc=server.createobjcet(microsoft.xmldom) xmld
- asp FSO 讀寫文件本文件實現(xiàn)代碼
- asp中isNull、isEmpty和空字符串的區(qū)別
- asp獲取用戶真實IP地址的方法
- asp連接sqlserver數(shù)據(jù)庫實現(xiàn)代碼
- asp中正則表達(dá)式過濾html代碼函數(shù)
- asp中g(shù)et post提交表單區(qū)別
- 網(wǎng)頁模板:ASP內(nèi)建對象Request
- xmlhttp的open方法使用詳解
- ASP的常用的自定義函數(shù)大全
- asp中用for循環(huán)的一個小技巧
- eWebEditor v3.8 列目錄
- ASP無組件分頁實現(xiàn)思路及代碼
- 相關(guān)鏈接:
- 教程說明:
ASP教程-全角半角轉(zhuǎn)換代碼。