Regular Expressions 101

Community Patterns

1...456

Get file name without extension

0

Regular Expression
PCRE (PHP <7.3)

/
(^\w+(?=\.))
/
gm

Description

Created this for Pathfinder. Takes a file name with the extension and returns only the file name.

Submitted by anonymous - 6 years ago