我自己写了个 strtohex , 请问有没有类似的gem 或库?
本帖最后由 Sevk 于 2010-04-01 10:33:21 编辑 我自己写了个 strtohex , 请问有没有类似的gem 或库?
class String
# str to hex
def phex(s)
s1=s.split('')
s1.map{|x| x.ord < 17 ? '0' + x.ord.to_s(16) : x.ord.to_s(16) }.join(' ')
end
end
s = "abcd"
p "%08x" % s.to_i(16)