asp中以十六進位制顯示字串資料 (轉)

worldblog發表於2007-12-05
asp中以十六進位制顯示字串資料 (轉)[@more@]如何以十六進位制顯示字串資料? 

整理編輯:to:master@china.com">China ASP

答:sub ShowHex(data)
 dim l
 dim i
 dim ch
 l=lenB(data)
 for i = 1 to l
 ch=mi(data,i,1)
 h=trim(hex(ascB(ch)))
 if len(h)=1 then
 h="0"+h
 end if
 response.write h+" "
 if i mod 15 =0 then
 response.write "
"
 end if
 next
end sub

加入時間:1999-11-8
閱讀次數:635


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10752043/viewspace-988766/,如需轉載,請註明出處,否則將追究法律責任。

相關文章