Regular Expressions 101

Community Patterns

Math every 2 line. => ^(?:.*\n){2}

0

Regular Expression
PCRE (PHP <7.3)

/
^(?:.*\n){2}
/
gm

Description

^(?:.*\n){2}

Submitted by anonymous - 3 years ago