2

我正在制作一个属性列表语法定义文件 ( tmLanguage) 以供练习。它采用 Sublime Text 的 YAML 格式,但我将在 VS Code 中使用它。

我需要匹配所有未被 . 括起来的字符(包括未终止的{和) 。}{}

我尝试使用否定的前瞻和后瞻断言,但它不匹配括号中的第一个或最后一个字符。

(?<!{).(?!})

添加一个贪心量词来消耗所有字符正好匹配整行。

(?<!{).+(?!})

添加一个惰性量词只会匹配除 . 之后的第一个字符之外的所有内容{。它也完全匹配{}

(?<!{).+?(?!})

| Test              | Expected Matches        |
| ----------------- | ----------------------- |
| `{Ctrl}{Shift}D`  | `D`                     |
| `D{Ctrl}{Shift}`  | `D`                     |
| `{Ctrl}D{Shift}`  | `D`                     |
| `{Ctrl}{Shift}D{` | `D` `{`                 |
| `{Ctrl}{Shift}D}` | `D` `}`                 |
| `D}{Ctrl}{Shift}` | `D` `}`                 |
| `D{{Ctrl}{Shift}` | `D` `{`                 |
| `{Shift`          | `{` `S` `h` `i` `f` `t` |
| `Shift}`          | `S` `h` `i` `f` `t` `}` |
| `{}`              | `{` `}`                 |

示例文本文件:https ://raw.githubusercontent.com/spikespaz/windows-tiledwm/master/hotkeys.conf


完整的语法高亮:

# [PackageDev] target_format: plist, ext: tmLanguage
---
name: Hotkeys Config
scopeName: source.hks
fileTypes: ["hks", "conf"]
uuid: c4bcacab-0067-43db-a1d7-7a74fffe2989

patterns:
- name: keyword.operator.assignment
  match: \=
- name: constant.language
  match: "null"
- name: constant.numeric.integer
  match: \{(?:Alt|Ctrl|Shift|Super)\}
- name: constant.numeric.float
  match: \{(?:Menu|RMenu|LMenu|Tab|Enter|PgUp|PgDown|Ins|Del|Home|End|PrntScr|Esc|Back|Space|F[0-12]|Up|Down|Left|Right)\}
- name: comment.line
  match: \#.*
...
4

1 回答 1

0

您可以使用以下 RegEx 进行匹配:

(?:{(Ctrl|Shift|Alt)})*

然后只需将匹配项替换为空字符串即可,您得到的是根据您的意愿。

RegEx 是不言自明的,但这里有一个简短的描述:

它创建一个non capturing Group由花括号中的一个修饰键组成的。右边的加号“ +”表示它重复了一次或多次。

于 2018-09-22T18:21:00.290 回答