I am trying to write a regular expression with the following requirements:
(1) not allow #
(2) not allow &
(3) not allow \t (tab)
(3) not allow multiple spaces (single space is ok)
Here is I tried:
^[^#&\t\s+]*$
However, I can't get my output as I want. What am I doing wrong?
Can someone help me?