Regular Expressions 101

Community Patterns

Match all filenames in any URL including those with ANSI escaped characters (PHP version)

0

Regular Expression
PCRE (PHP <7.3)

/
(?<=[=\/]|%2F)(?:(?!%2F)[^?&\s\/])+\.\w+(?=[?&]|$)
/
gm

Description

Match all filenames in any URL including those with ANSI escaped characters (PHP version).

Submitted by The Fourth Bird - 2 years ago (Last modified 2 years ago)