I have a csv file with one column of "\0", how can I replace this to zeros?
In data views, it shows :\0, but in R console, it shows: \0
I tried str_replace_all(data, "\0", "0") and got error message like:
Error: nul character not allowed (line 1)
Thanks!