rm_white - Remove multiple white space (> 1 becomes a single white space), white space before a comma, white space before a single or consecutive combination of a colon, semicolon, or endmark (period, question mark, or exclamation point), white space after a left bracket ("{", "(", "[") or before a right bracket ("}", ")", "]"), leading or trailing white space.
rm_white_bracket - Remove white space after a left bracket ("{", "(", "[") or before a right bracket ("}", ")", "]").
rm_white_colon - Remove white space before a single or consecutive combination of a colon, semicolon.
rm_white_comma - Remove white space before a comma.
rm_white_endmark - Remove white space before endmark(s) (".", "?", "!").
rm_white_lead - Remove leading white space.
rm_white_lead_trail - Remove leading or trailing white space.
rm_white_trail - Remove trailing white space.
rm_white_multiple - Remove multiple white space (> 1 becomes a single white space).
rm_white_punctuation - Remove multiple white space before a comma, white space before a single or consecutive combination of a colon, semicolon, or endmark (period, question mark, or exclamation point).
trim: logical. If TRUE removes leading and trailing white spaces.
clean: trim logical. If TRUE extra white spaces and escaped character will be removed.
pattern: A character string containing a regular expression (or character string for fixed = TRUE) to be matched in the given character vector. Default, @rm_dollar uses the rm_dollar regex from the regular expression dictionary from the dictionary argument.
replacement: Replacement for matched pattern.
extract: logical. If TRUE the dollar strings are extracted into a list of vectors.
dictionary: A dictionary of canned regular expressions to search within if pattern begins with "@rm_".
...: Other arguments passed to gsub.
Returns
Returns a character string with extra white space removed.
Examples
x <- c(" There is ( $5.50 ) for , me . "," that's [ 45.6% ] of! the pizza !"," 14% is { $26 } or $25.99 ?","Oh ; here's colon : Yippee !")rm_white(x)rm_white_bracket(x)rm_white_colon(x)rm_white_comma(x)rm_white_endmark(x)rm_white_lead(x)rm_white_trail(x)rm_white_lead_trail(x)rm_white_multiple(x)rm_white_punctuation(x)