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


R語言 utf8ToInt()用法及代碼示例


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

相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Convert a UTF8 value to Integer in R Programming – utf8ToInt() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。