strTrim.Rd
strTrim trims leading and trailing spaces from a string.
strTrim
strTrim(x)
character string (or a vector of strings) to be trimmed
trimmed string(s)
strTrim(' Hello, World! ')#> [1] "Hello, World!"strTrim(c('a ', 'b ', ' c '))#> [1] "a" "b" "c"
Tomas Sieger