Search
❯
Sep 11, 20251 min read
vscode实用小技巧 括号替换为大括号,中间内容不变: \((.*)\) ⇒ {$1} ()可以将内部匹配内容存入变量
\((.*)\)
{$1}
()