Community Patterns

Community Library Entry

0

Regular Expression
Created·2020-03-02 09:58
Flavor·PCRE (Legacy)

/
^LIN[\s\S]*(?=^UNS)
/
gm
Open regex in editor

Description

From the first line string of an item line --> ^LIN over line breaks --> [\s\S]* to before (lookahead) the first line after the whole item line string --> (?=^UNS)

Submitted by Raik Zobel