Hi
I could find a regular expression that meets the following requirements:
Mimimum 8 Characters with at least one English alphabet (upper or lower case), at least one digit and at least one symbol. (?=.*\d)(?=.*[A-Za-z])(?=.*[!@#$%^&*_+=’:;,.()-]).{8,}$.
It works fine in firefox but does not work in IE7 browser.
Can you please help me out with this.
Thanks