Please help me with the following confusion:
qdapRegex::rm_nchar_words("è ûé", "1,2")
[1] "è ûé"
qdapRegex::rm_nchar_words('k ku ppp d', "1,2")
[1] "ppp"
Why in the first code line it doesn't respond with "" but in the second one it works as expected. What do I miss here? The only thing I can think that in the first line of code the string is built from non English letters.
Any solution?