Regular Expressions 101

Community Patterns

Find only ".config" file names

1

Regular Expression
PCRE (PHP <7.3)

/
(.config{1,})[ ]?\n
/
g

Description

Will find lines that end with "/*.config"

Submitted by Dee - 9 years ago