Regular Expressions 101

Community Patterns

Select songs starting with 3+ numbers but not 1|2

1

Regular Expression
PCRE2 (PHP >=7.3)

/
\d{3,}\s-\s(.+)(\.\w+)
/
gm

Description

Select songs starting with odd numbers like 3+ numbers(001 - song.mp3, 000004 - song.mp3), but not simple ones 1|2 like (01 - song.opus or 1 - song.mp3) :

01 - The Black Eyed Peas - The Time (Dirty Bit).opus 0000000 - Nelly Furtado - Say It Right.mp3

#The extentsion it's also captured as group!

Submitted by anonymous - a year ago