How to use pattern attribute for input type text to specify regular expression for the input value in HTML

1 Answer

0 votes
<!DOCTYPE html>
<html>
<body>
 
<form action="">
5 Letters only [A-Za-z]: <input type="text" name="country_code" pattern="[A-Za-z]{5}">
<input type="submit">
</form>
 
</body>
</html>

 



answered Jan 7, 2019 by avibootz
...