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


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


intToUtf8()R語言中的函數用於將整數轉換為UTF8值。

用法: intToUtf8(x, multiple)

參數:
x:整數或整數向量
multiple:要轉換為單個或多個字符串的布爾值

範例1:


# R program to convert an integer to UTF8
  
# Calling the intToUtf8() function
intToUtf8(4)
intToUtf8(10)
intToUtf8(58)

輸出:

[1] "\004"
[1] "\n"
[1] ":"

範例2:


# R program to convert an integer to UTF8
  
# Creating a vector
x <- c(49, 100, 111)
  
# Calling the intToUtf8() function
intToUtf8(x)
intToUtf8(x, multiple = TRUE)

輸出:

[1] "1do"
[1] "1" "d" "o"

相關用法


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