Community Patterns

Community Library Entry

1

Regular Expression
Created·2015-12-30 08:43
Flavor·PCRE (Legacy)

/
((?<raute>#(?<raute_content>.*))|(?<doubleslashes>\/\/(?<doubleslashes_content>.*))|(?<block>\/\*(?<block_content>[^*]+|\*(?!\/))*+\*\/))
/
gm
Open regex in editor

Description

Find Comments starting with # or //. Also finds Commentblocks starting with /* and ending with */.

Submitted by Candyman1332