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


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


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"

相關用法


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