Skip to content

Instantly share code, notes, and snippets.

@jverweijL
Last active March 10, 2022 11:01
Show Gist options
  • Save jverweijL/42769c6512f7447f3c762cd92792d593 to your computer and use it in GitHub Desktop.
Save jverweijL/42769c6512f7447f3c762cd92792d593 to your computer and use it in GitHub Desktop.

Some example regex for Liferay Forms Field Validation

Phonenumber

A phonenumber with exactly 10 digits

\d{10}

Maximum 10 words

(\w+\s){0,9}\w+

Zipcode (Dutch)

postcode '1234 AB'

\d\d\d\d\s\w\w

Maximum 10 characters

^[\w\s\W]{1,10}$
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment