Regular Expressions 101

Community Patterns

Indentation detection

0

Regular Expression
PCRE (PHP <7.3)

/
^((?: )*).+(?:\n\1((?: )+).*)(?:\n\1(?:(?: )+).*)*
/
gm

Description

group 1: base indent group 2: indentation spaces

a very generic code capturer

Submitted by anonymous - 4 years ago