trim {genArise}R Documentation

Trim

Description

Extract white spaces at the begining or end of a word.

Usage

trim(word)

Arguments

word A string of characters posibly with white spaces at the beging or end of the string.

Value

Returns a string of characters, with leading and trailing whitespace omitted.

Examples


trim("        This is a String            ")
## return [1] "This is a String"


[Package genArise version 1.10.0 Index]