This regex expression should select everything but letters, spaces, .,' and ´. But for some reason it selects letters too. \p{L} seems to have no effect. RegExp(r"([^\p{L}\s\.'´])");
This regex expression should select everything but letters, spaces, .,' and ´. But for some reason it selects letters too. \p{L} seems to have no effect. RegExp(r"([^\p{L}\s\.'´])");