Remove all values between "<>", which are typically HTML tags.

strip_html(dat, ignore = NULL, trim_space = TRUE)

Arguments

dat

a data.frame.

ignore

a character vector containing values to ignore while stripping HTML tags. For instance, if you have <keep me> and <me too> in your column names, add ignore = c("keep me", "me too").

trim_space

logical, if TRUE trim extra white space

Value

a data.frame object.

Examples

if (FALSE) {
fetch_survey_obj(1234567890) %>%
  parse_survey() %>%
  strip_html()
}