Notepad ++ Regular Expression

Source: Internet
Author: User

A regular expression is a query string that contains general characters and special characters. special characters can be used to expand the search string capability. The function of a regular expression in searching and replacing strings cannot be ignored, it can improve work efficiency.

Expression description

T tab.

N new line.

. Match any character.

| Match the characters on the left and right of the expression. For example, "AB | bc" matches "AB" or "bc ".

[] Match any single character in the list. For example, "[AB]" matches "a" or "B". "[0-9]" matches any number.

[^] Matches any single character out of the list. for example, "[^ AB]" matches characters other than "a" and "B. "[^ 0-9]" matches any non-numeric characters.

* The character on the left is matched any time (0 or multiple times). For example, "be *" matches "B", "be", or "bee ".

+ The character on the left is matched at least once (once or multiple times). For example, "be +" matches "be" or "bee" but does not match "B ".

? The character on the left is matched 0 times or 1 time. For example, "be ?" Matches "B" or "be" but does not match "bee ".

^ The expression on the right is matched at the beginning of A row. For example, "^ A" only matches rows starting with ".

"Only matches the rows ending with" e.

() Affects the order of expression matching and is used as the grouping tag of the expression.

Escape Character. If you want to use "" itself, you should use "\".

Example:

Original string

Str [1] abc [991];

Str [2] abc [992];

Str [11] abc [993];

Str [22] abc [2, 994];

Str [111] abc [995];

Str [222] abc [996];

Str [1111] abc [997];

Str [2222] abc [999];

Target string:

Abc [1];

Abc [2];

Abc [11];

Abc [22];

Abc [111];

Abc [222];

Abc [1111];

Abc [2222];

Processing:

Search string: str

Abc

Replacement string: abc [1]

[1] apply a regular expression -- replace the specified content with the end of the row

The original text is shown in the following two lines

Abc aaaaa

123 abc 444

If you want to encounter "abc" each time, replace "abc" and the content from the end to the end of the line with "abc efg"

That is, the above text is replaced:

Abc efg

123 abc efg

Solution:

① In the replace dialog box, enter "abc. *" in the search content .*"

② Select the "Regular Expression" check box and click "replace all ".

The meaning of the symbol is as follows:

"." = Match any character

"*" = Matches 0 times or more

Note: It is actually a replacement of regular expressions. Here we just sort out some previously raised questions. simply from the regular expression itself, we can extend thousands of special cases.

[2] Regular Expression application-digit replacement

We hope

Asdadas123asdas456asdasd789asdasd

Replace:

Asdadas [1, 123] asdasdas [2, 456] asdasdasd [2, 789] asdasd

In the replace dialog box, select the regular expression check box;

Enter "[0-9] [0-9] [0-9] [0-9]" in the search content, without quotation marks

"Replace with:" And enter "[12]" without quotation marks

The range is the range for your operation, and then you can choose to replace it.

In fact, this is a special case for regular expressions. "[0-9]" indicates matching 0 ~ For any special case between 9, "[a-z]" indicates matching ~ Any special case between z

The preceding statement uses "[0-9]" to indicate three consecutive numbers.

"" Indicates the prototype corresponding to the first "[0-9]", and "1" indicates the prototype corresponding to the second "[0-9 ]".

"[", "]" Is a simple character, indicating that "[" or "]" is added. If you enter "other 12", the result is replaced:

Asdadas other 123 other asdasdas other 456 other asdasdasd other 789 other asdasd

Function enhancement (by jiuk2k ):

If you change "[0-9] [0-9] [0-9]" to "[0-9] * [0-9]", corresponding to 1, 123, 12345, or...

Customized as needed

There are a lot of related content. You can refer to the regular expression syntax for a closer look.

[3] Regular Expression Application -- delete the specified character at the end of each row

These characters also appear in the row, so they cannot be simply replaced.

For example

12345 1265345

2345

Delete "345" at the end of each row"

This is also the usage of the regular expression. In fact, it should be relatively simple to look at the regular expression carefully. However, since this problem is raised, it indicates that there is still a process of understanding the regular expression. The solution is as follows:

Solution:

In the replace dialog box, enable the regular expression check box.

Enter "345" in the search content

"Indicates matching from the end of the line

If match from the beginning of the line, you can use "^" to implement it. However, EditPlus has another function that can easily Delete the string at the beginning of the line.

A. Select the row to be operated.

B. Edit-format-Delete row comment

C. In the pop-up dialog box, enter the first character of the row to be cleared. OK.

[4] Regular Expression Application -- replace multiple rows with parentheses

The following code is contained in hundreds of webpages:

N

In the replace dialog box, enable the regular expression option.

[5] Regular Expression Application -- delete empty rows

Start EditPlus to open a text file to be processed.

① Select the "replace" command in the "Search" menu to bring up the text replacement dialog box. Select the "Regular Expression" check box, indicating that we want to use a regular expression in search and replacement. Then, select "current file" in "replacement range" to operate the current file.

2. click the button on the right of the "search content" combo box. A drop-down menu is displayed.

③ The following Operation adds a regular expression, which represents the blank row to be searched. (Tip: A blank line only contains space characters, tabs, and carriage returns. It must start with one of the three symbols and end with a carriage return, the key to searching for empty rows is to construct a regular expression that represents empty rows ).

Enter the regular expression "^ [t] * n" in "Search". Note that there is a space character before "t.

(1) Select "match from the beginning of the line", and the character "^" appears in the "search content" combo box, indicating that the string to be searched must appear at the beginning of the line in the text.

(2) If you select "character in the range", a pair of brackets "[]" will be added after "^". The current insertion point is in the brackets. In regular expressions, brackets indicate that any character in the text matches the matching conditions.

(3) press the Space key to add a space character. A space character is a component of a blank line.

(4) Select "tab" and add "t" that represents the tab ".

(5) move the cursor, move the current insertion point to "]", and select "Match 0 times or more". This operation adds the asterisk (*). Asterisk indicates the space character or Tab character in the brackets "[]" in front of it. There are 0 or more characters in a row.

(6) Select "linefeed" and insert "n" to indicate a carriage return.

④ The "Replace with" combo box is left empty, indicating that the searched content is deleted. Click "replace" to delete empty rows one by one, or click "replace all" to delete all empty rows (Note: EditPlus sometimes has the problem that "replace all" cannot completely delete empty rows at a time, it may be a program BUG. You need to press the button several more times ).

1. Do you often encounter such statements in Chinese:

Code:

"Error adding the post !";

"Error adding the comment !";

"Error adding the user !";

If there are many similar files, one translation is obviously very tired and boring.

In fact, you can do this by using the replace function in Editplus. In the replace dialog box, select the "Regular Expression" check box:

Find the original file:

Code:

"Error adding ([^! | "|;] *)

Replace:

Code:

"An error occurred when adding 1.

What happens after this replacement? The result is:

Code:

"An error occurred when adding the post !";

"An error occurred when adding the comment !";

"An error occurred when adding the user !";

OK. What will you do next? Replace the post, the comment, and the user with the words you want to translate. Get the final result:

Code:

"An error occurred when adding a post !";

"An error occurred when adding comments !";

"An error occurred when adding users !";

2. The words to be extracted are in the middle, for example:

Code:

Can not be deleted because

Can not be added because

Can not be updating because

You can use this method:

Use the replace function in Editplus. In the replace dialog box, select the "Regular Expression" check box:

Find the original file:

Code:

Can not be ([^] *) because

Replace:

Code:

Cannot be 1 because

What happens after this replacement? The result is:

Code:

Cannot be deleted because

Cannot be added because

Cannot be updating because

The remaining steps are as follows.

The improvement in efficiency is obvious when the number of Chinese characters is large and the sentence structure is monotonous!

Explain: ([^! | "|;] *) Means not equal! And "and;" indicates that all characters other than the three characters will be selected (replacing the region );

1 is the new location of the selected replacement area (copied to this new location ).

3. you can delete the blank lines in a text file by hand. You can use the replace function in Editplus. In the replace dialog box, select the "Regular Expression" check box:

Find the original file:

Code:

^ [T] * n

The blank line can be deleted after the replacement is null. Execute the following command to see if :)

Abandon [2 ''b9nd2n] v. abandon and give up

Abandonment [2 ''b9nd2nm2nt] n. Give up

Abbreviation [2bri: vi ''ei62n] n. Abbreviations

Abeyance [2' bei2ns] n. Stop

Abide [2 ''baid] v. Follow

Ability [2 ''' biliti] n. Capability

Able [''eibl] adj. Competent and competent

Abnormal [9b' n0: m2l] adj. abnormal, abnormal

Aboard [2 ''b0: d] adv. Boat (CAR) on

1.

Find: (^ [a-zA-Z0-0-] + )(

+ )(.*)

Replace: @ "1", "2", "3 ″,

Effect:

@ "Abandon", "[2'' b9nd2n] "," v. abandon, give up ",

@ "Abandonment", "[2' b9nd2nm2nt]", "n. Discard ",

@ "Abbreviation", "[2bri: vi ''ei62n]", "n. abbreviation ",

@ "Abeyance", "[2' bei2ns]", "n. Deferred, abort ",

@ "Abide", "[2' baid]", "v. Compliance ",

@ "Ability", "[2' biliti]", "n. capability ",

@ "Able", "[''eibl]", "adj. Competent and competent ",

@ "Abnormal", "[9b'' n0: m2l]", "adj. abnormal, abnormal ",

@ "Aboard", "[2'' b0: d] "," adv. Ship (CAR ",

2.

Search: n

Replace:

Note: The content to be replaced is blank.

Effect:

@ "Abandon", "[2' b9nd2n]", "v. abandon, give up ", @" abandonment "," [2' b9nd2nm2nt] "," n. discard ", @" abbreviation "," [2bri: vi ''ei62n]", "n. abbreviation "," abeyance "," [2' bei2ns] "," n. stop ", @" abide "," [2 ''baid]", "v. follow ", @" ability "," [2' biliti] "," n. capability ", @" able "," [''eibl] "," adj. ", @" abnormal "," [9b'' n0: m2l] "," adj. abnormal, abnormal ", @" aboard "," [2 ''b0: d]", "adv. ship (vehicle) to ", @" abolish "," [2' b0li6] "," v. cancel ", @" abolition "," [9b2 ''li62n]", "n. abolish, cancel"

3.

Search :@@@@@

Replace: n

Effect:

"Abandon", "[2'' b9nd2n] "," v. abandon, give up ",

"Abandonment", "[2' b9nd2nm2nt]", "n. Discard ",

"Abbreviation", "[2bri: vi ''ei62n]", "n. abbreviation ",

"Abeyance", "[2' bei2ns]", "n. Hold down, stop ",

"Abide", "[2' baid]", "v. Compliance ",

"Ability", "[2' biliti]", "n. Capability ",

"Able", "[''eibl]", "adj. Competent and competent ",

"Abnormal", "[9b' n0: m2l]", "adj. abnormal, abnormal ",

"Aboard", "[2' b0: d]", "adv. Ship (CAR ",

"Abolish", "[2' b0li6]", "v. abolish, cancel ",

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.