Replace every string entry in a list
Examples
services <- list("\t Some text from the table")
services <- epair:::list.string.replacer(services, "\t", "")
services
#> [[1]]
#> [1] " Some text from the table"
#>
Replace every string entry in a list
services <- list("\t Some text from the table")
services <- epair:::list.string.replacer(services, "\t", "")
services
#> [[1]]
#> [1] " Some text from the table"
#>