R 语言中的 sprintf() 函数使用用户提供的 Format 使用列表中的值返回格式化的字符串。
用法: sprintf(format, values)
参数:
format:打印值的格式
values:要传递到格式
范例1:
# R program to illustrate
# the use of sprintf() function
# Initializing values
x1 <- "Welcome"
x2 <- "GeeksforGeeks"
# Calling sprintf() function
sprintf("% s to % s", x1, x2)
输出:
[1] "Welcome to GeeksforGeeks"
范例2:
# R program to illustrate
# the use of sprintf() function
# Initializing values
x1 <- "GeeksforGeeks"
x2 <- 100
x3 <- "success"
# Calling sprintf() function
sprintf("% s gives %.0f percent % s", x1, x2, x3)
输出:
[1] "GeeksforGeeks gives 100 percent success"
相关用法
- R语言 print()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 noquote()用法及代码示例
- R语言 is.primitive()用法及代码示例
- R语言 toupper()用法及代码示例
- R语言 agrep()用法及代码示例
- R语言 chartr()用法及代码示例
- R语言 dQuote()用法及代码示例
- R语言 sQuote()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 grep()用法及代码示例
- R语言 word()用法及代码示例
- R语言 strrep()用法及代码示例
- R语言 str_detect()用法及代码示例
- R语言 gsub()用法及代码示例
- R语言 sub()用法及代码示例
- R语言 strtrim()用法及代码示例
- R语言 pmatch()用法及代码示例
- R语言 strftime()用法及代码示例
- R语言 as.Date()用法及代码示例
- R语言 toString()用法及代码示例
- R语言 parse()用法及代码示例
- R语言 deparse()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Print a Formatted string in R Programming – sprintf() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。