InputExpected ResultActual ResultActions
sloppy regex tool
✨ The Magic Zone 🎩🐇 ✨

  • Tips and Tricks
    Match any character in the Greek character set.
    \p{greek}u
    Match any number, no matter which script it was written in.
    \p{N}u
    Set a backtracking limit for tricky regexes to avoid Regex DoS. Try this with the input strings 01234567890z and 012345678901z.
    (*LIMIT_MATCH=10000)^(\d+)+$
    Examine what the HTML5 specification considers a valid e-mail address by using the "Generate 5 test strings" function in ✨ The Magic Zone 🎩🐇 ✨.
    Please remember to un-escape the forward-slash, since this tool doesn't use delimiters!
    ^[a-zA-Z0-9.!#$%&'*+/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$
    This project uses 3rd party software.