How to batch delete comments in php using DW

coldplay.xixi
Release: 2023-03-03 20:26:02
Original
2488 people have browsed it

How to use DW to delete comments in batches in php: 1. Delete single-line comments and use [//.*] for regular replacement; 2. Delete multi-line comments and use regular expressions [/\*[ \S\s] ?(?=\*/)\*/] Just search for a match.

How to batch delete comments in php using DW

How to use DW to delete comments in batches in php:

1. Delete single line comments

Open Dreamweaver's search tool and select regular replacement as shown in the figure:

How to batch delete comments in php using DW

## The

//.* is a regular match Expression of single-line comments

2. Delete multi-line comments

Also use regular expressions to find matches, as shown above:

How to batch delete comments in php using DW

The regular expression is

/\*[\S\s] ?(?=\*/)\*/

is the expression that matches multi-line comments

There are two points to note. 1. Use regular expressions must be checked; 2. You cannot search all in dw. You must click one by one to find the next one, or you can click Replace All

Related learning recommendations:

php graphic tutorial

The above is the detailed content of How to batch delete comments in php using DW. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template