Regular Expressions 101

Community Patterns

Regex for comments.

0

Regular Expression
PCRE (PHP <7.3)

/
\/\*([^\*]|\*[^\/"]|\"[^\*]|\"\*[^\/]*|\"\*\/\")*\*\/
/

Description

"Comments" surrounded by /* and */ without an inner / unless it is surrounded by "". ex. /a"/"b/ is in the language.

Submitted by anonymous - 5 years ago