Regular Expressions 101

Community Patterns

Match all filenames in any URL including those with ANSI escaped characters (Js/python version)

0

Regular Expression
ECMAScript (JavaScript)

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

Description

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

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