Skip to content

Commit

Permalink
docs: update skill
Browse files Browse the repository at this point in the history
  • Loading branch information
MuYunyun committed Sep 19, 2023
1 parent 6834ce3 commit b2121ed
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions BasicSkill/Shorcuts/vscode.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,14 @@ abbrlink: ues1uzcj

### 筛选技巧

* files to include/files to exclude: 用多个 `,` 作为分隔符隔开,每个 `,` 间可以使用正则。
* Search: 可以使用正则,在 Replace 中可以使用 $1、$2 表示括号内匹配到的内容。
1. files to include/files to exclude: 用多个 `,` 作为分隔符隔开,每个 `,` 间可以使用正则。
2. Search: 可以使用正则,在 Replace 中可以使用 `$1``$2` 表示括号内匹配到的内容。

```js
案例实践
目标:将组件 `<Comp />`,批量搜索添加上为参数 demo。
方法:在 Search 栏输入正则 `(<Comp [^/]+)`,替换栏输入 `$1demo ` 点击替换按钮即可完成批量替换。
```

### VScode 中使用 markdown 不能显示预览图片

Expand Down
2 changes: 1 addition & 1 deletion BasicSkill/basis/正则表达式.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ abbrlink: 81uasrob

### 如何搜索某个 API

`Ellipsis[\s\n].*length`
`<Comp[^<]+style=`

### 小心正则中的 lastIndex 陷阱

Expand Down

0 comments on commit b2121ed

Please sign in to comment.