sublime_text - JasonWayne/personal-wiki GitHub Wiki
常用场景
提取某个字符串并替换
For example, we need to get all values corresponding to key, then we can follow these steps:
- Find all
"key":"(\w+)"
- Copy to temparary doc
- Replace all
"key":"(\w+)"
with$1
For example, we need to get all values corresponding to key, then we can follow these steps:
"key":"(\w+)"
"key":"(\w+)"
with $1