E
esgeht
Unregistered / Unconfirmed
GUEST, unregistred user!
请教
inttohex() chr() ord()
这三个函数的区别与联系
比如我有一个字符串'abcd',我用ord()函数转换成了一个Byte类型的数组buf
buf[0]:=ord('a').......buf[3]:=ord('d');
如果我想将数组buf还原成字符串'abcd'
我是用chr()还是用inttohex()呢?
inttohex() chr() ord()
这三个函数的区别与联系
比如我有一个字符串'abcd',我用ord()函数转换成了一个Byte类型的数组buf
buf[0]:=ord('a').......buf[3]:=ord('d');
如果我想将数组buf还原成字符串'abcd'
我是用chr()还是用inttohex()呢?