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
相关用法
- R语言 as.character()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 is.character()用法及代码示例
- R语言 as.integer()用法及代码示例
- R语言 deg2rad()用法及代码示例
- R语言 rad2deg()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 utf8ToInt()用法及代码示例
- R语言 as.binary()用法及代码示例
- R语言 col2rgb()用法及代码示例
- R语言 substring()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 str_to_title()用法及代码示例
- R语言 as.factor()用法及代码示例
- R语言 as.ordered()用法及代码示例
- R语言 as.list()用法及代码示例
- R语言 data.matrix()用法及代码示例
- R语言 intToUtf8()用法及代码示例
- R语言 intToBits()用法及代码示例
- R语言 as.logical()用法及代码示例
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 Convert Character value to ASCII value in R Programming – charToRaw() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。