Skip to content

Commit 45f25e2

Browse files
yassenbcdimascio
andauthoredNov 23, 2022
Support trailing comments (#38)
The original Ruby dotenv supports trailing comments as it is valid shell syntax. In general it would be good to conform to the regular expression as defined here: https://github.com/bkeepers/dotenv/blob/master/lib/dotenv/parser.rb#L14-L30 Co-authored-by: Carmine DiMascio <cdimasci@amazon.com>
1 parent e52b498 commit 45f25e2

File tree

4 files changed

+4
-1
lines changed

4 files changed

+4
-1
lines changed
 

‎src/main/java/io/github/cdimascio/dotenv/internal/DotenvParser.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
public class DotenvParser {
2020

2121
private static final Pattern WHITE_SPACE_REGEX = Pattern.compile("^\\s*$"); // ^\s*${'$'}
22-
private static final Pattern DOTENV_ENTRY_REGEX = Pattern.compile("^\\s*([\\w.\\-]+)\\s*(=)\\s*(.*)?\\s*$"); // ^\s*([\w.\-]+)\s*(=)\s*(.*)?\s*$
22+
private static final Pattern DOTENV_ENTRY_REGEX = Pattern.compile("^\\s*([\\w.\\-]+)\\s*(=)\\s*([^#]*)?\\s*(#.*)?$"); // ^\s*([\w.\-]+)\s*(=)\s*([^#]*)?\s*(#.*)?$
2323

2424
private final DotenvReader reader;
2525
private final boolean throwIfMissing;

‎src/test/java/tests/BasicTests.java

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ public class BasicTests {
1515
put("MY_TEST_EV2", "my test ev 2");
1616
put("WITHOUT_VALUE", "");
1717
put("MULTI_LINE", "hello\\nworld");
18+
put("TRAILING_COMMENT", "value");
1819
}};
1920

2021
@Test(expected = DotenvException.class)

‎src/test/resources/.env

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ MY_TEST_EV1=my test ev 1
33
MY_TEST_EV2=my test ev 2
44
WITHOUT_VALUE=
55
MULTI_LINE=hello\nworld
6+
TRAILING_COMMENT=value # comment
67

78
## Malformed EV!
89
MY_TEST_EV3

‎src/test/resources/env

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ MY_TEST_EV1=my test ev 1
33
MY_TEST_EV2=my test ev 2
44
WITHOUT_VALUE=
55
MULTI_LINE=hello\nworld
6+
TRAILING_COMMENT=value # comment
67

78
## Malformed EV!
89
MY_TEST_EV3

0 commit comments

Comments
 (0)