How to use regular match to delete empty lines, comment lines in Phpstorm

Source: Internet
Author: User
This time to bring you phpstorm how to use regular matching to delete empty lines, comment lines, phpstorm in the use of regular matching to delete empty lines, comment lines of attention to what, the following is the actual case, take a look.

Encountered a requirement, sometimes when reading the framework source code, want to filter (delete) out of the source code comment lines, if the manual row-by-line deletion shows unscientific.

Of course the strong regular match (REGEXP regular expression) was thought of, and by writing a regular expression to find out all the comment lines and replace them with empty, the requirement was fulfilled.

1. Ctrl + F, enter the regular expression:(//.*$)|(/*(.|s)*?*/)

2. Ctrl + R, do not enter:

3. Click Replace all on the back

However, it was found that this did not fully fulfill our needs, but instead of replacing the comment line with a blank line.

So, let's write a regular expression that matches the empty line and deletes it.

1.ctrl + F, enter the regular expression:^n

2.ctrl + R, no input

3. Click Replace all on the back

However, it was found that the blank line was not completely deleted. (There are some empty lines not deleted)

So, we continue to come up with a regular match to delete.

1.ctrl + F, enter the regular expression:sn

2.ctrl + R, no input

3. Click Replace all on the back

OK, here, all the empty lines are deleted. Have a good time-:)

Phpstorm using regular to remove PHP code empty line Tips

There are a lot of small partners will encounter code empty line is very much, but a row of delete must be very irritable, this time need to use to bulk delete empty rows.

How to delete empty rows in bulk?

My approach is to use the regular to find all the empty lines, and then replace all with a key.

First tick the match case and the regex.

The first search box fills in a regular rule:^\n

After matching to all empty lines, click "Replace All".

The replacement effect is as follows:

Believe that you have read the case of this article you have mastered the method, more exciting please pay attention to the PHP Chinese network other related articles!

Recommended reading:

PHP echo with commas and use the dot number of steps to summarize

PHP Development Remote control server steps in detail

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.