toupper()
R編程中的方法用於將小寫字符串轉換為大寫字符串。
用法: toupper(s)
返回:返回大寫字符串。
範例1:
# R program to convert string
# from lowercase to uppercase
# Given String
gfg <- "Geeks For Geeks"
# Using toupper() method
answer <- toupper(gfg)
print(answer)
輸出:
[1] "GEEKS FOR GEEKS"
範例2:
# R program to convert string
# from lowercase to uppercase
# Given String
gfg <- "The quick brown fox jumps over the lazy dog"
# Using toupper() method
answer <- toupper(gfg)
print(answer)
輸出:
[1] "THE QUICK BROWN FOX JUMPS OVER THE LAZY DOG"
相關用法
- R語言 tolower()用法及代碼示例
- R語言 str_to_title()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 dQuote()用法及代碼示例
- R語言 sQuote()用法及代碼示例
- R語言 strtoi()用法及代碼示例
- R語言 as.Date()用法及代碼示例
- R語言 toString()用法及代碼示例
- R語言 parse()用法及代碼示例
- R語言 deparse()用法及代碼示例
- R語言 charToRaw()用法及代碼示例
- 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()用法及代碼示例
注:本文由純淨天空篩選整理自Jitender_1998大神的英文原創作品 Convert string from lowercase to uppercase in R programming – toupper() function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。