当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。