Regular Expressions 101

Community Patterns

Strip multi-line (star) comments from JavaScript, while leaving any CDATA sections intact.

4

Regular Expression
PCRE (PHP <7.3)

/
\/\*(?!(\<\!\[CDATA\[)|(\]\]>))(.*?)\*\/
/
gs

Description

Loading markdown...
Submitted by Dane MacMillan - 11 years ago