R/strRemoveEmpty.R
strRemoveEmpty.Rd
Remove empty strings
strRemoveEmpty(x, naOk = TRUE, spacesOk = TRUE)
character. Character vector.
character
logical(1). Allow NA values to propagate.
logical(1)
NA
logical(1). Consider spaces to be non-empty.
character. Modified vector, with empty strings removed.
Updated 2023-09-28.
stringi::stri_remove_empty().
stringi::stri_remove_empty()
x <- c("", "a", "b", " ", NA) y <- strRemoveEmpty(x, naOk = TRUE, spacesOk = TRUE) print(y) #> [1] "a" "b" " " NA y <- strRemoveEmpty(x, naOk = FALSE, spacesOk = FALSE) print(y) #> [1] "a" "b"