Regular Expressions 101

Community Patterns

tag urls

0

Regular Expression
PCRE (PHP <7.3)

/
( # start capture url (?:(?:(?:ht|f)tps?\:)\/\/?|(?:www\.)) # start with http or www (?:\s?[:\w?=%&+-]+ # need some chars in url, allow spaces. (?:(?:(?:\.)|(?:\/(?:\/)?)))? # can have ., / or // inside urls. )+ # allow repeat alternating pattern of chars and delimiters ) # end capture url
/
gmx

Description

no description available

Submitted by anonymous - 5 years ago