Im trying to filter in a DDBB in mongoDB Compass all the results that have in "name" any character that is not a letter or a number.
It can be the character alone or with others characters that are valid.
What am I doing wrong?
{ name: {"$regex": "^(?!0-9a-zA-ZÄÖÜäöüß )"} }