Regular Expressions 101

Community Patterns

Extract file name from path

0

Regular Expression
PCRE2 (PHP >=7.3)

/
(?=[^\/]+$)(.*(?=\.))
/
gm

Description

Extracts string between the last / and .

Submitted by superfranky32 - a year ago