Skip to content

Instantly share code, notes, and snippets.

@ahstro
Forked from Chadtech/Alphanumeric.elm
Last active March 10, 2017 09:33
Embed
What would you like to do?
import Regex
alphanumericRegex =
Regex.regex "^[A-Za-z0-9]*$"
allAlphanumeric : String -> Bool
allAlphanumeric =
Regex.contains alphanumericRegex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment