If I have a regex like this:
Regex objAlphaNumericPattern = new Regex(">[ ]*[\\s]*[a-zA-Z0-9\x0600-\x06ff\x00DF]+[ ]*<");
and I want to include these 2 characters also to be take into consideration [ and ]
How do I specify them inside my regex
Thanks


Reply With Quote
