Become an expert in R — Interactive courses, Cheat Sheets, certificates and more!
Get Started for Free

str_trim

Trim whitespace from a string


Description

str_trim() removes whitespace from start and end of string; str_squish() also reduces repeated whitespace inside a string.

Usage

str_trim(string, side = c("both", "left", "right"))

str_squish(string)

Arguments

string

A character vector.

side

Side on which to remove whitespace (left, right or both).

Value

A character vector.

See Also

str_pad() to add whitespace

Examples

str_trim("  String with trailing and leading white space\t")
str_trim("\n\nString with trailing and leading white space\n\n")

str_squish("  String with trailing,  middle, and leading white space\t")
str_squish("\n\nString with excess,  trailing and leading white   space\n\n")

stringr

Simple, Consistent Wrappers for Common String Operations

v1.4.0
GPL-2 | file LICENSE
Authors
Hadley Wickham [aut, cre, cph], RStudio [cph, fnd]
Initial release

We don't support your browser anymore

Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.