I have a question that come to my mind when I answered this post to match ASCII characters except alphanumeric.
This is what I have tried but it's not correct.
(?=[\x00-\x7F])[^a-zA-Z0-9]
I am not looking for solution, just want to know, where I am wrong. What is the meaning of this regex pattern?
Thanks
As per my understanding (?=[\x00-\x7F])
is used to check for ASCII character and [^a-zA-Z0-9]
is used to exclude alphanumeric character. So finally it will match any ASCII character except alphanumeric. Am I right?