html - I have made pattern for address field, that works well on regex101.com, but when I used it on my page not working? -


i have made pattern address field, works on regex101.com, when used on page not working? real problem pattern not response.

<form>     <input type="text" id="address" name="address" title="address length must  5 60, 1 space between address, in start space , special character not allow " placeholder="your adress.." pattern="^[^-\s\w&(%#$^)][\da-za-z]{4,}+( [\d\sa-za-z]+)*$" maxlength="60" required="required">     <input type="submit">  </form>


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -