英文:
How do I run two "Find and Replace" at once in VS-Code?
问题
我正在使用Markdown,我意识到我希望我的部分是粗体。
如果我在元素上运行查找和替换:
<空格>`<unique_code_snippet>`<空格>
并替换所有实例:
<空格>`
与:
<空格>`**
这不起作用,因为代码变成了:
<空格`**<unique_code_snippet>`**<空格>
这围绕着元素变成了:
**`<空格>
我能否以一个VS-Code的查找和替换操作来访问这两个实例:
<空格>`和`<空格>
并替换为:
<空格>'**<unique_code_snippet>**'<空格>
我可以通过两个“查找和替换”操作来实现这一点,但我宁愿不这样做。
英文:
I am working in Markdown
and I realised I am looking for my <code>
sections to be in bold.
If I run Find and Replace on the element:
<space>`<unique_code_snippet>`<space>
and replace all instances of:
<space>`
with:
<space>`**
This does not work because the code becomes:
<space`**<unique_code_snippet>`**<space>
That surrounds a <code>
element to become:
**`<space>
Is there a way I can access both instances of
<space>`<and>`<space>
and replace with:
<space>'**<unique_code_snippet>**'<space>
In one Find and Replace action in VS-Code?
I could do this with TWO Find and Replace
actions, but I'd rather not
答案1
得分: 0
Here are the translated parts:
使用正则表达式搜索和替换
- 查找:
<space>(`<unique_code_snippet>`)<space>
- 替换:
<space>**$1**<space>
如果您想一次性替换所有代码部分为粗体版本
- 查找:
<space>(`[^`]+`)<space>
- 替换:
<space>**$1**<space>
英文:
use regex search and replace
- find:
<space>(`<unique_code_snippet>`)<space>
- replace:
<space>**$1**<space>
If you want to replace ALL code sections with bold versions in one go
- find:
<space>(`[^`]+`)<space>
- replace:
<space>**$1**<space>
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论