I want regx for following condition
1.Combination of Letters and Digits should accept.
2.Combination of Letters and symbols should accept.
3.Only Letters should accept.
4.Only digits should not accept.
5.Only Symbols should not accept.
6.Combination of letters,digits,symbols should accept.
I am trying like this:
/^([a-zA-Z]+\s*)*[a-zA-Z]+$/
What is wrong.