I try to create pattern for literal characters, couple of special character and +
without success.
I used this as the example Regex pattern including all special characters
This my regex but according to http://www.regexplanet.com/advanced/java/index.html the string +
is not matches:
[a-zA-Z\x43-_#@.:;/\\=!^() ]+
What I missed?