将字符转换为整数或在R中获取字符的ASCII码

时间:2017-06-19 18:35:54

标签: r integer ascii

在C / C ++中,我们只需nX = cX - " "从字符nX获取整数cX

我们如何在R?中做到这一点?

1 个答案:

答案 0 :(得分:2)

charToRaw返回带整数代码的向量,不考虑任何声明的编码。

请参阅:??charToRaw以获取更多帮助和相关功能。

示例:

charToRaw("A")
#[1] 41

charToRaw("AB")
# [1] 41 42
is.vector(charToRaw("AB"))
# TRUE