在 Visual Studio Code 中使用 Jupyter 扩展时如何查找和替换单个单元格中的文本
正如标题所述,在 Visual Studio Code 中使用 jupyter 扩展时如何查找和替换单个 jupyter 单元格内的文本?我熟悉 ctr+h 但这将替换整个 jupyter 笔记本文件中出现的所有内容。这对我来说是一个非常重要的功能,因为我在浏览器上的 jupyter 中经常使用它。
As the title says, how to find and replace text inside a single jupyter cell when using the jupyter extension in Visual Studio Code? I am familiar with ctr+h but that will replace all the occurrences in the entire jupyter notebook file. This is a really important feature for me, as I am using it a lot in jupyter on the browser.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
2023-02-09 更新
对于最新更新的 VSCode,选择您想要替换的内容,然后按
F2
。如果要替换单元中的所有实例,请在电脑中使用Ctrl
F2
原始答案
F3 就可以了。它首先显示单个单元格的“查找”小部件。然后单击左侧的三角形,该三角形将展开为“替换”小部件。
2023-02-09 update
For the most updated VSCode, select something you would like to replace, and then
F2
. If you want to replace all instances in the cell useCtrl
F2
in the pcOriginal answer
F3
do the trick. It first shows the "Find" widget for a single cell. Then click the triangle on the left, which will be expanded to a "Replace" widget.您可以选择第一个匹配项,然后使用
Ctrl+D
。它将选择单元格中的下一个出现的情况。重复此操作,直到返回到第一次出现的位置,然后键入新值。它将替换您圈出的所有值。如果您更改了键盘快捷键或者有所不同,您可以找到正确的快捷键:
You can select the first occurrence and then use
Ctrl+D
. It will select the next occurence in the cell. Repeat that until you go back to the first ocurrence and then type the new value. It will replace all the values your circled on.In case you have changed that keyboard shortcut or if it is different you can find the correct one:
尝试选择一个单元格并使用
Ctrl+g
,因为我刚刚偶然发现。try select a cell and use
Ctrl+g
as I just found out accidentally.只需使用 Ctrl+A 即可选择单元格中的所有内容。
并使用“FINd”小部件,单击“在选择中查找”
在此输入图像描述
Just use Ctrl+A to select all the content in a cell.
And use the 'FInd' widget, click the 'Find in Selection'
enter image description here
在版本 1.96.0 中,Mac 上的
Cmd-F
后单击(蓝色背景)在选择中查找 图标(水平线,参见图片)即可进行替换并在选择内容或单元格中查找(使用小替换或全部替换图标,请参见图像底部)。如果您只想选择单元格的一部分,则需要单击两次“在选择中查找”图标(以正确退出和返回,确保其背景颜色为蓝色)。
相反,如果您希望返回以选择整个单元格,则需要再次单击两次“在选择中查找”图标。
In version 1.96.0, the
Cmd-F
on Mac followed by having the Find in Selection icon (horizontal lines, see image) clicked in (blue background) allows to replace and find in selection or in cell (using the small Replace or Replace All icons, see bottom of the image).If you wish to only select part of a cell, you need to click twice the Find in Selection icon (to get out and back in properly, making sure that its background color is blue).
Conversely, if you wish to return to select the entire cell, you need to click again twice the Find in Selection icon.