Regular Expressions 101

Community Patterns

Comment Separator in Regex

1

Regular Expression
PCRE (PHP <7.3)

/
(?:(.*)?((?:\/\/.*|--.*|\/\*.*\*\/))(.*))
/
g

Description

Works for all types of comments and even multiline comments in java.

Submitted by Chandan - 8 years ago