Regular Expressions 101

Community Patterns

Alternative to "Current Error" Lookbehind

0

Regular Expression
PCRE (PHP <7.3)

/
^(?!Current\s).*Error:
/
g

Description

Regex original: (?<!Current\s)Error:

Porém expect4j utiliza classes de regex do Apache Oro, que não possuem suporte para lookbehind.

Submitted by Patrick Bard - 6 years ago