bl.string {sfsmisc} | R Documentation |
Simple constructor of a “blank” string of given string length.
bl.string(no)
no |
non-negative integer. |
A “blank” string (i.e. character(1)
) fulfilling
n == nchar(bl.string(n))
.
Martin Maechler, early 1990's.
r <- sapply(0:8, function(n) ccat(bl.string(n),n)) cbind(r) bl.string # shows the very simple function definition