Community Patterns

Community Library Entry

3

Regular Expression
Created·2023-02-01 19:16
Updated·2023-02-02 00:41
Flavor·PCRE2 (PHP)

/
((^|\s)#(.*)$)|(^\n)|(\n(\s|)+#(.*)$)|([\n\s]+#.*)|([\n\s]{2,}$)
/
gm
Open regex in editor

Description

This RegEx removes unused elements such as inline comments and blank lines in python code. This will save you tokens and time when using GPT-3+ or ChatGPT to help code and debug.

Submitted by LukeL