Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2022-08-23 21:13
Flavor·PCRE2 (PHP)

/
((?<!gf_)apply_filters|do_action).*?\( ?('|")(.*?)('|").*
/
gm
Open regex in editor

Description

This will pluck out any do_action or apply_filters name in your code. Useful if you want to see what actions or filters have been added or deprecated between codebases, etc.

Submitted by olie480