Regular Expressions 101

Community Patterns

Find php short echo tags

1

Regular Expression
PCRE (PHP <7.3)

/
(<\?=).+(\?\>)
/

Description

Find instances of <?=$some_variable?> Usefult to replace with <?php echo $some_variable ?>

Submitted by JayCee - 9 years ago