Replace all characters entries in data frame
Examples
df <- data.frame(c("1", "2", "3", "4"))
modified.df <- epair:::string.replacer(df, "1", "One")
modified.df
#> c..1....2....3....4..
#> 1 One
#> 2 2
#> 3 3
#> 4 4