Hey, I was wondering, after few more regex coding, I came across trying to allow few of the special characters
I wanted to know if there's a possible way to allow both of the square brackets.
The problem is that whenever I put it, it's rather ending the exception list since all my allows keys are within the bracket
So for example, I have [a-zA-Z] then I want square bracket, so I tried [][a-zA-Z] but that didn't work out. Is there some kind of special key character I need to be able to match it?
Thanks