当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。