notebook/VSCodeRegularExpression.md

276 B

vscode 正则表达式使用技巧

每行替换为块注释

.*

替换为

/**
 * $0
 */

大小写字母转换

  • 大写转小写
[A-Z]

替换为

\L$0
  • 小写转大写
[a-z]

替换为

\U$0