Regular Expressions 101

Community Patterns

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

0

Regular Expression
.NET 7.0 (C#)

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

Description

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

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