<html>
<body>
<p>A form with a text field that can contain only three letters (no numbers or special characters):</p>
<form action="https://www.w3schools.com/action_page.php">
Country code: <input type="text" id="myText" name="country_code" pattern="[A-Za-z]{3}" title="Three letter country code">
<input type="submit">
</form>
<p>Click the "Try it" button to display the value of the pattern attribute of the text field.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
var x = document.getElementById("myText").pattern;
document.getElementById("demo").innerHTML = x;
}
</script>
</body>
<!-- Mirrored from www.w3schools.com/jsref/tryit.asp?filename=tryjsref_text_pattern by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 03:17:20 GMT -->
</html>