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"
相關用法
- R語言 call()用法及代碼示例
- R語言 expand.grid()用法及代碼示例
- R語言 curve()用法及代碼示例
- R語言 subset()用法及代碼示例
- R語言 quantile()用法及代碼示例
- R語言 table()用法及代碼示例
- R語言 expression()用法及代碼示例
- R語言 runif()用法及代碼示例
- R語言 colorRampPalette()用法及代碼示例
- R語言 pairs()用法及代碼示例
- R語言 heat.colors()用法及代碼示例
- R語言 heatmap()用法及代碼示例
- R語言 stripchart()用法及代碼示例
- R語言 dotchart()用法及代碼示例
- R語言 is.primitive()用法及代碼示例
- R語言 toupper()用法及代碼示例
- R語言 agrep()用法及代碼示例
- R語言 chartr()用法及代碼示例
- R語言 dQuote()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Create Repetitions of a String in R Programming – strrep() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。