VSCode 的基本使用
2025/5/11小于 1 分钟
How to use .* in VSCode? (正则表达式查找和替换)
\d+matches any digit, like0,12345, etc.\w+matches any word character, likea,abc123, etc.\nmatches any newline character.(abc)matches any string that containsabc.
How to find a pattern and replace it with another?
Find by (.*?), replace as $1.
For example, want to hide all images,
- Find
!\[(.*?)\]\((.*?)\) - Replace with

How to write Latex in VSCode?
To avoid horizontal scrolling, enable Editor: Word Wrap in the editor settings.
How to full screen?
Press F11. See also:
