用法:
bytes2hex(itr) -> String
bytes2hex(io::IO, itr)
将字节的迭代器 itr
转换为其十六进制字符串表示形式,通过 bytes2hex(itr)
返回 String
或通过 bytes2hex(io, itr)
将字符串写入 io
流。十六进制字符都是小写的。
Julia 1.7
使用生成 UInt8
值的任意迭代器调用 bytes2hex
需要 Julia 1.7 或更高版本。在早期版本中,您可以在调用 bytes2hex
之前 collect
迭代器。
例子
julia> a = string(12345, base = 16)
"3039"
julia> b = hex2bytes(a)
2-element Vector{UInt8}:
0x30
0x39
julia> bytes2hex(b)
"3039"
相关用法
- Julia bytesavailable用法及代码示例
- Julia break用法及代码示例
- Julia binomial()用法及代码示例
- Julia bind方法用法及代码示例
- Julia bitstring用法及代码示例
- Julia bswap用法及代码示例
- Julia binomial用法及代码示例
- Julia bind用法及代码示例
- Julia begin用法及代码示例
- Julia splice!用法及代码示例
- Julia @cfunction用法及代码示例
- Julia LibGit2.count用法及代码示例
- Julia LinearAlgebra.BLAS.dot用法及代码示例
- Julia sizeof()用法及代码示例
- Julia :<=用法及代码示例
- Julia zero()用法及代码示例
- Julia rem用法及代码示例
- Julia ...用法及代码示例
- Julia setfield()用法及代码示例
- Julia rpad用法及代码示例
- Julia sort用法及代码示例
- Julia tail用法及代码示例
- Julia cis方法用法及代码示例
- Julia SparseArrays.spdiagm用法及代码示例
- Julia Distributed.procs方法用法及代码示例
注:本文由纯净天空筛选整理自julialang.org 大神的英文原创作品 Base.bytes2hex — Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。