I need a help regarding regular expression.
I have to match string like this: "dãasc abd"
Pattern that i have used:
([^\u0000-\u007F] |\\w|^[a-zA-Z0-9-\\s]*$)+
but this pattern does not allow whitle spaces in two strings
Please help me for find out correct pattern for this kind of string.