Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2023-02-22 22:14
Flavor·PCRE2 (PHP)

/
^(http(s)?:\/\/.)?(www\.)?[-a-zA-Z0-9@:%._\+~#=]{2,256}\.[a-z]{2,6}\b([-a-zA-Z0-9@:%_\+.~#?&\/\/=]*)$
/
gm
Open regex in editor

Description

Use to validate basic website URLs with or without http://. I took bits and pieces of other regexes I found and compiled into one that worked well for my purposes.

Submitted by Daniel Ecker