Regex for JAVA : I have a requirement of matching the value of a request parameter with unicode charcters but it should not allow space . Basically a regex which should allow all unicode charcters without space.I tried with all efforts but in vain :(
I got the below regex from ur site but it allows space too, So please help
[[a-zA-Z]*[^\\pL\\pM\\p{Nd}\\p{Nl}\\p{Pc}[\\p{InEnclosedAlphanumerics}&&\\p{So}]]*[a-zA-Z]]{1,440}
For Example "Suraj$÷
" should be true but " Suraj $÷
" this should be false