Community Patterns

Community Library Entry

0

Regular Expression
Created·2022-04-26 20:24
Updated·2022-04-26 20:52
Flavor·PCRE2 (PHP)

/
(?<=MID).*?(?=\s)
/
g
Open regex in editor

Description

This is done for finding data that is allocated after a defined pattern of letters.

In this case the example is, after MID, finding the MID number in a raw data string.

Submitted by anonymous