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


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


strrep()R語言中的函數用於創建指定字符串的指定重複次數。

用法: strrep(string, n)

參數:
string:指定字符串
n:重複次數

範例1:


# R Program to illustrate 
# the use of strrep function
  
# String to be repeated
x <- "Geeks"
  
# Calling strrep() function
strrep(x, 5)

輸出:

[1] "GeeksGeeksGeeksGeeksGeeks"

範例2:


# R Program to illustrate 
# the use of strrep function
  
# String to be repeated
x <- "Geeks"
y <- "4 "
  
# Calling strrep() function
strrep(x, 5)
strrep(y, 5)
strrep(x, 5)

輸出:

[1] "GeeksGeeksGeeksGeeksGeeks"
[1] "4 4 4 4 4 "
[1] "GeeksGeeksGeeksGeeksGeeks"

相關用法


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