Regular Expressions 101

Community Patterns

Community Library Entry

0

Regular Expression
Created·2018-06-26 03:30
Flavor·ECMAScript (JavaScript)

/
^(?!.*note).*versa.*$
/
gm
Open regex in editor

Description

This RegEx uses a lookahead to say that anything BUT (string) will be valid

Submitted by anonymous