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


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