美文网首页
20190506-R语言字符处理函数大小写转换casefold、

20190506-R语言字符处理函数大小写转换casefold、

作者: 天空的小白 | 来源:发表于2019-05-06 08:55 被阅读0次

casefold

Usage
casefold(x, upper = FALSE)
大小写转换
Arguments
upper→逻辑值,是否转换为大写,默认为FALSE
Example

casefold用法

tolower&toupper

Usage
tolower(x)→转换为小写
toupper(x)→转换为大写
Example

tolower&toupper用法

推论inference

From above examples,we can know that:
toupper(x) = casefold(x,upper = T)

相关文章

网友评论

      本文标题:20190506-R语言字符处理函数大小写转换casefold、

      本文链接:https://www.haomeiwen.com/subject/drploqtx.html