VSCode
5/11/25
How to use .*
in VSCode?
\d+
matches any digit, like0
,12345
, etc.\w+
matches any word character, likea
,abc123
, etc.\n
matches any newline character.(abc)
matches any string that containsabc
.
How to find a pattern and replace it with another?
For example, want to hide all images,
- Find
!\[(.*?)\]\((.*?)\)
- Replace with
