I need to check below mentioned special characters as well extended Latin characters in my data.
Special characters: ~!@©#$%^&*()_+{}|:"<>?``€[]\;',./
Diacriticals: é, ö, ò, etc
I have tried [^a-z]
, but it does not work as I need, it also captures unwanted characters.
Could you please help me to suggest the correct regular expression?