trimws: Remove Leading/Trailing Whitespace

Description Usage Arguments Details Examples

View source: R/strwrap.R

Description

Remove leading and/or trailing whitespace from character strings.

Usage

1
trimws(x, which = c("both", "left", "right"))

Arguments

x

a character vector

which

a character string specifying whether to remove both leading and trailing whitespace (default), or only leading ("left") or trailing ("right"). Can be abbreviated.

Details

For portability, ‘whitespace’ is taken as the character class [ \t\r\n] (space, horizontal tab, line feed, carriage return).

Examples

1
2
3
4
5
x <- "  Some text. "
x
trimws(x)
trimws(x, "l")
trimws(x, "r")

robertzk/monadicbase documentation built on May 27, 2019, 10:35 a.m.