Community Patterns

Community Library Entry

0

Regular Expression
Created·2021-12-21 01:56
Flavor·PCRE2 (PHP)

/
[^#]\K#[^\n]*|^#[^\n]*
/
g
Open regex in editor

Description

This will match the comments. Example:

# hi print "Hello, World!" # hi

will be

[# hi] print "Hello, World!" [# hi]

Submitted by Fmbalbuena