Home  >  Article  >  Development Tools  >  How does vscode delete a large number of tags after finding them?

How does vscode delete a large number of tags after finding them?

尚
Original
2020-01-09 10:56:105401browse

How does vscode delete a large number of tags after finding them?

vscode can use regular expressions to match tags and then delete them in bulk.

Example:

Clear tppabs tag:

In html file:

Find:\btppabs="h [^"]*"

Replacement: (empty)

How to use regular matching to delete a large number of content in vscode:

Image links in css files (in gif Picture as an example):

Find: tpa=http://[^\s]*.gif

Replace: (empty)

Comments in the css file:

Find: /*tpa.*?*/

Replace: (empty)

Fix confirm link:

Find: href=" javascript: if(confirm('(htt[^"\s]).*?"

Replacement: href="$1"

Recommended related articles and tutorials: vscode tutorial

The above is the detailed content of How does vscode delete a large number of tags after finding them?. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn