| str_remove_quoted {strex} | R Documentation |
If any parts of a string are quoted (between quotation marks), remove those parts of the string, including the quotes. Run the examples and you'll know exactly how this function works.
str_remove_quoted(string)
string |
A character vector. |
A character vector.
Other removers: str_singleize,
str_trim_anything
string <- "\"abc\"67a\'dk\'f" cat(string) str_remove_quoted(string)