utf8ToInt()
R語言中的函數用於將UTF8值轉換為整數值。
用法: utf8ToInt(x, multiple)
參數:
x:整數或整數向量
multiple:要轉換為單個或多個字符串的布爾值
範例1:
# R program to convert a UTF8 to Integer
# Calling the utf8ToInt() function
utf8ToInt("[")
utf8ToInt("+")
utf8ToInt(":")
輸出:
[1] 91 [1] 43 [1] 58
範例2:
# R program to convert a UTF8 to Integer
# Creating a vector
x1 <- c("&@\n")
x2 <- c("[+:")
x3 <- c("1d<U>")
# Calling the utf8ToInt() function
utf8ToInt(x1)
utf8ToInt(x2)
utf8ToInt(x3)
輸出:
[1] 38 64 10 [1] 91 43 58 [1] 49 100 60 85 62
相關用法
- R語言 intToUtf8()用法及代碼示例
- R語言 as.integer()用法及代碼示例
- R語言 as.binary()用法及代碼示例
- R語言 is.integer()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- R語言 deg2rad()用法及代碼示例
- R語言 rad2deg()用法及代碼示例
- R語言 strtoi()用法及代碼示例
- R語言 intToBits()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 col2rgb()用法及代碼示例
- R語言 lgamma()用法及代碼示例
- R語言 trigamma()用法及代碼示例
- R語言 qcauchy()用法及代碼示例
- R語言 qlogis()用法及代碼示例
- R語言 qlnorm()用法及代碼示例
- R語言 qpois()用法及代碼示例
- R語言 qnbinom()用法及代碼示例
- R語言 ecdf()用法及代碼示例
- R語言 pf()用法及代碼示例
- R語言 qf()用法及代碼示例
- R語言 qweibull()用法及代碼示例
- R語言 qtukey()用法及代碼示例
- R語言 qsignrank()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert a UTF8 value to Integer in R Programming – utf8ToInt() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。