Regular Expressions 101

Community Patterns

Add space after comma if it has letters on each side.

0

Regular Expression
PCRE (PHP <7.3)

/
(\S)(,)(\S)
/
gm

Description

This is used in the SQL_Pretty_Formatter after the commas inside quotes, parenthesis, and brackets have been temporarily replaced with |.

Submitted by Ben - 3 years ago