3

如何从 转换"character""raw"

class ( plot_binary  )
# [1] "raw"
plot_binary[3]
# [1] 4e
class ( plot_binary[3] ) 
# [1] "raw"

我想做从字符"4e"到原始的转换4e

我该怎么做呢?

as.raw显然不起作用,因为

as.raw("4e")
# [1] 04
4

2 回答 2

7

找到了解决方案:

as.raw ( as.hexmode ( "4e" ) )
#[1] 4e
于 2012-07-23T18:07:12.763 回答
5

尝试查看:rawToCharcharToRaw

于 2012-07-23T18:05:14.897 回答