Regular Expressions 101

Community Patterns

Find missing space around operators (=, +, -, *, /)

0

Regular Expression
Python

r"
(?! )[=+\-\*/](?! )
"
gm

Description

no description available

Submitted by rugk - 8 years ago