Free Access Week - Data Engineering + BI
Data Engineering and BI courses are free this week!
Free Access Week - Jun 2-8

strex (version 2.0.1)

str_remove_quoted: Remove the quoted parts of a string.

Description

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.

Usage

str_remove_quoted(string)

Value

A character vector.

Arguments

string

A character vector.

See Also

Other removers: str_singleize(), str_trim_anything()

Examples

Run this code
string <- "\"abc\"67a\'dk\'f"
cat(string)
str_remove_quoted(string)

Run the code above in your browser using DataLab