We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6d6da7 commit 097d58eCopy full SHA for 097d58e
flopy4/mf6/codec/reader/grammar/basic.lark
@@ -4,7 +4,7 @@ block_name: CNAME [INT]
4
_list: line*
5
line: [WS] item+ _NL+
6
item: word | NUMBER
7
-word: /[a-zA-Z0-9._+'~,-\\(\\)]+/
+word: /[a-zA-Z0-9._'~,+-\\(\\)]+/
8
9
%import common.NEWLINE -> _NL
10
%import common.WS
flopy4/mf6/codec/reader/grammar/typed.lark
@@ -19,7 +19,7 @@ filename: ESCAPED_STRING | word
19
data: double+
20
record: token+ NEWLINE
21
token: number | word
22
-word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,-\\(\\)]+/
+word: /(?!(?i:begin|end))[a-zA-Z0-9._'~,+-\\(\\)]+/
23
_token: word | number
24
25
%import common.NEWLINE
0 commit comments