| wrap {pander} | R Documentation |
Wraps vector elements with string provided in wrap argument.
wrap(x, wrap = "\"")
x |
a vector to wrap |
wrap |
a string to wrap around vector elements |
a string with wrapped elements
Aleksandar Blagotic
This function was moved from rapport package: http://rapport-package.info.
## Not run:
wrap('foobar')
wrap(c('fee', 'fi', 'foo', 'fam'), '_')
## End(Not run)