Hello,
I try to check hexadecimal character codes according to this specification : "Only allow characters which hexadecimal code is between 20 and 7E".
I tried this : myString.matches("[\\x20-\\7E]"); but it doesn't work.
Any idea ?