R/spelling.R
stripSpaces.Rd
This function removes spaces from a character string.
stripSpaces(x)
A character string.
The string with spaces removed.
# Remove spaces from "hello world" stripSpaces("hello world") #> [1] "helloworld"