當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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