Skip to contents

This function removes spaces from a character string.

Usage

stripSpaces(x)

Arguments

x

A character string.

Value

The string with spaces removed.

Examples

# Remove spaces from "hello world"
stripSpaces("hello world")
#> [1] "helloworld"