Skip to content

Instantly share code, notes, and snippets.

@fitzy1321
Last active April 24, 2024 18:04
Show Gist options
  • Save fitzy1321/b30973c48197487151192e66958a456b to your computer and use it in GitHub Desktop.
Save fitzy1321/b30973c48197487151192e66958a456b to your computer and use it in GitHub Desktop.
No whitespace in text input Regex

No whitespace in text input Regex

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Input Regex</title>
</head>
<body>
    <input type="text" name="no-whitespace" id="no-whitespace" pattern="^[^ ].+[^ ]$">
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment