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


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


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"

相關用法


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