Regular Expressions 101

Community Patterns

select any line without a 1- or 2- digit integer followed by a period

0

Regular Expression
PCRE (PHP <7.3)

/
^((?! [0-9*]*[0-9*]\. ).)*$
/
gm

Description

This is useful for selecting 2nd and 3rd levels in an ordered list copied from a website (for removal, in my case).

Submitted by Peter Arthur - 6 years ago