I am trying to detect either a space, single quote or double quote
Note: this answer does not work for single quote (unless it's the very first character, I need to detect either in front of, inside of or after a string): HTML5 input pattern search for quote
I have tried pattern="[^'\x20\x22]+" and also pattern="[^\x20\x22\x27]+"
Could someone give me a regex that detects all of them please.