I have a table with a string column. This column includes lots of text but for some unknown reason, I find some nul characters such as '\0sult'. I would like to clean my column and remove this nul character but I don't know how to do this.
If I try :
grepl(pattern = "\0", x = "blabla \0sults")
I've got
Error in parse(text = x, srcfile = src): nul character not allowed (line 1)
How could I detect and remove those nul characters ?