Hi,
I know that perhaps this place is not the best for this type of requirement but maybe some of you are Belgian.
I need to find all records in my Belgian data where respondents replied "as above", "stated before", "left a comment already" and "na", "no comments", nothing to say".
I already have this pieces of code which should be updated:
blank_statements <- regex("no\\scomment?|nee|neen|^\\s*n.?a.?\\s*$", ignore_case = TRUE)
As_above = if_else(str_detect(comment, regex("zoals\\shierboven|eerder\\sgenoemd|Zoals\\svermeld", ignore_case = TRUE)), 1, 0)
but I know the list should be longer and it should include phrases in other main languages used in Belgium.
Can anyone help?