Form validation

Name pattern=”^[a-zA-Z]+(?:[_ -a-zA-Z0-9 !@#$%^&*|<>.,])*[a-zA-Z 0-9 !@#$%^&*|<>.,]*$” This pattern will satisfy the following conditions. The name accepts symbols (ex: Victoria 2) The name accepts combinations of alphabets and special characters (ex: Test Victoria ||| & Company). The name field does not accept all numerals. The name field does not accept all white spaces. The name field… Continue reading Form validation