当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 charToRaw()用法及代码示例


R 语言中的 charToRaw() 函数用于将给定字符转换为其对应的 ASCII 值或 “raw” 对象。

用法: charToRaw(x)
参数: 
x: Given characters to be converted 
 

范例1:

Python3


# R program to illustrate
# charToRaw function
 
# Calling charToRaw() function over
# some alphabets
x <- charToRaw("a")
y <- charToRaw("A")
z <- charToRaw("ab")
 
# Getting the corresponding ASCII value
x
y
z

输出:



[1] 61
[1] 41
[1] 61 62

范例2:

Python3


# R program to illustrate
# charToRaw function
 
# Initializing some strings
a <- "Geeks"
b <- "GFG is a CS Portal"
 
# Calling charToRaw() function
# over above strings
c <- charToRaw(a)
d <- charToRaw(b)
 
# Getting the ASCII values of the above
# specified strings
c
d

输出:

[1] 47 65 65 6b 73
[1] 47 46 47 20 69 73 20 61 20 43 53 20 50 6f 72 74 61 6c

相关用法


注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Convert Character value to ASCII value in R Programming – charToRaw() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。