Prev Demo
HTML5
>
Restrict Patterns Of Characters
Next Demo
Write code here
J
|
B
|
A
<!DOCTYPE html> <html> <head> <title>Demo</title> </head> <body> <p>Restricting a pattern of characters in text box in html5</p> <form> <input required pattern="[A-Za-z]{3}" title="3 alphabets characters only" /> <input type="submit" value="Submit" /> </form> </body> </html>
Note: We DO NOT save your trial code in our database.
Output