Regular Expressions 101

Community Patterns

Extract String Between Two Strings

0

Regular Expression
PCRE2 (PHP >=7.3)

/
(?<=id=)(.*)(?=} Task)
/
gm

Description

Objective - Extract the task id from logs

Regex (?<=id=)(.*)(?=} Task)

Submitted by anonymous - a year ago