Regular Expressions 101

Community Patterns

There does not seem to be anything here

Community Library Entry

1

Regular Expression
ECMAScript (JavaScript)

/
^([\w\.\+\/\=\u0100-\u017F\u0027\u0180-\u024F\u0900-\u097F\u0980-\u09FF\u0400-\u04FF\u0600-\u06FF\uAC00-\uD7AF\u4E00-\u9FFFÀ-Üß-ü-\s]{1,64})@([\w\.\+\/\=\u0100-\u017F\u0027\u0180-\u024F\u0900-\u097F\u0980-\u09FF\u0400-\u04FF\u0600-\u06FF\uAC00-\uD7AF\u4E00-\u9FFFÀ-Üß-ü-\s]{1,})\.([\w\.\+\/\=\u0100-\u017F\u0027\u0180-\u024F\u0900-\u097F\u0980-\u09FF\u0400-\u04FF\u0600-\u06FF\uAC00-\uD7AF\u4E00-\u9FFFÀ-Üß-ü-\s]{2,})$
/
gm

Description

This regex is a universal pattern used for the HTML input tag with type="email".

Dont use type="email" as the pattern does not work with it. For the pattern to work correctly, use type="text" with inputmode="email" if you want to display the desired keyboard on mobile screens.

Submitted by kiko - 19 days ago