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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。