I want to create a regular expression that allows special characters but does not allow non-english letters. My regular expression for my validations is:
/^(?=.*?[A-Z])(?=.*?[a-z])(?=.*?[0-9])(?=.*?[#?!@$%^&*-]).{8,}$/;
Also this regular expression allows numbers as you can see