str_to_title()
R语言中的函数用于将字符串的每个单词的第一个字母转换为大写,其余字母转换为小写。
Note: This function uses 'stringr' library.
用法: str_to_title(string)
参数:
string:要转换的字符串
范例1:
# R Program to illustrate
# the use of str_to_title function
# Loading Library
library(stringr)
# Creating a string
str <- "geeks for geeks"
# Calling str_to_title() function
str_to_title(str)
输出:
[1] "Geeks For Geeks"
范例2:
# R Program to illustrate
# the use of str_to_title function
# Loading Library
library(stringr)
# Creating a string
str <- "GEEKS FOR GEEKS"
# Calling str_to_title() function
str_to_title(str)
输出:
[1] "Geeks For Geeks"
相关用法
- R语言 toupper()用法及代码示例
- R语言 word()用法及代码示例
- R语言 tolower()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 charToRaw()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 deg2rad()用法及代码示例
- R语言 rad2deg()用法及代码示例
- R语言 as.factor()用法及代码示例
- R语言 as.ordered()用法及代码示例
- R语言 as.list()用法及代码示例
- R语言 data.matrix()用法及代码示例
- R语言 utf8ToInt()用法及代码示例
- R语言 intToUtf8()用法及代码示例
- R语言 intToBits()用法及代码示例
- R语言 as.character()用法及代码示例
- R语言 as.integer()用法及代码示例
- R语言 as.logical()用法及代码示例
- R语言 as.binary()用法及代码示例
- R语言 as.Date()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Convert First letter of every word to Uppercase in R Programming – str_to_title() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。