File tree 4 files changed +4
-1
lines changed
main/java/io/github/cdimascio/dotenv/internal
4 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 19
19
public class DotenvParser {
20
20
21
21
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*(#.*)? $
23
23
24
24
private final DotenvReader reader ;
25
25
private final boolean throwIfMissing ;
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ public class BasicTests {
15
15
put ("MY_TEST_EV2" , "my test ev 2" );
16
16
put ("WITHOUT_VALUE" , "" );
17
17
put ("MULTI_LINE" , "hello\\ nworld" );
18
+ put ("TRAILING_COMMENT" , "value" );
18
19
}};
19
20
20
21
@ Test (expected = DotenvException .class )
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ MY_TEST_EV1=my test ev 1
3
3
MY_TEST_EV2 = my test ev 2
4
4
WITHOUT_VALUE =
5
5
MULTI_LINE = hello\nworld
6
+ TRAILING_COMMENT = value # comment
6
7
7
8
# # Malformed EV!
8
9
MY_TEST_EV3
Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ MY_TEST_EV1=my test ev 1
3
3
MY_TEST_EV2=my test ev 2
4
4
WITHOUT_VALUE=
5
5
MULTI_LINE=hello\nworld
6
+ TRAILING_COMMENT=value # comment
6
7
7
8
## Malformed EV!
8
9
MY_TEST_EV3
You can’t perform that action at this time.
0 commit comments