ソースを参照

Merge pull request #731 from decorator-factory/master

Add documentation on the `x` regexp flag
tags/gm/2021-09-23T00Z/github.com--lark-parser-lark/0.11.0
Erez Shinan 3年前
committed by GitHub
コミット
2170e7edc8
この署名に対応する既知のキーがデータベースに存在しません GPGキーID: 4AEE18F83AFDEB23
1個のファイルの変更5行の追加1行の削除
  1. +5
    -1
      docs/grammar.md

+ 5
- 1
docs/grammar.md ファイルの表示

@@ -112,9 +112,13 @@ You can use flags on regexps and strings. For example:
```perl
SELECT: "select"i //# Will ignore case, and match SELECT or Select, etc.
MULTILINE_TEXT: /.+/s
SIGNED_INTEGER: /
[+-]? # the sign
(0|[1-9][0-9]*) # the digits
/x
```

Supported flags are one of: `imslu`. See Python's regex documentation for more details on each one.
Supported flags are one of: `imslux`. See Python's regex documentation for more details on each one.

Regexps/strings of different flags can only be concatenated in Python 3.6+



読み込み中…
キャンセル
保存