Regular Expressions 101

Community Patterns

Community Library Entry

1

Regular Expression
Created·2023-07-03 20:25
Flavor·PCRE2 (PHP)

/
(?:^|^)\s*(?:export\s+)?([\w.-]+)(?:\s*=\s*?|:\s+?)(\s*'(?:\\'|[^'])*'|\s*\"(?:\\\"|[^\"])*\"|\s*`(?:\\`|[^`])*`|[^#\r\n]+)?\s*(?:#.*)?(?:$|$)
/
gm
Open regex in editor

Description

Parse a single line of a .env file

From repo dotenv - source code here.

Submitted by Mot (https://github.com/motdotla)