瀏覽代碼

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+



Loading…
取消
儲存