Detailed description of replacing strings with EditPlus regular expressions

Source: Internet
Author: User

Some instances are collected online.

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.

The search and replacement of EditPlus. The search in the file supports the following regular expressions:

Expression Description
\ T Tab character.
\ N New line.
. Matches any character.
| Either expression on its left and right side matches the target string.
For example, "a | B" matches "a" and "B ".
[] Any of the enclosed characters may match the target character.
For example, "[AB]" matches "a" and "B". "[0-9]" matches any digit.
[^] None of the enclosed characters may match the target character.
For example, "[^ AB]" matches all character T "a" and "B ".
"[^ 0-9]" matches any non-digit character.
* Character to the left of asterisk in the expression shocould match 0 or more times.
For example "be *" matches "B", "be" and "bee ".
+ Character to the left of plus sign in the expression shocould match 1 or more times.
For example "be +" matches "be" and "bee" but not "B ".
? Character to the left of question mark in the expression shocould match 0 or 1 time.
For example "be? "Matches" B "and" be "but not" bee ".
^ Expression to the right of ^ matches only when it is at the beginning of line.
For example "^ A" matches an "A" that is only at the beginning of line.
$ Expression to the left of $ matches only when it is at the end of line.
For example "e $" matches an "e" that is only at the end of line.
() Affects evaluation order of expression and also used for tagged expression.
\ Scape character. If you want to use character "\" itself, you shoshould 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 \ [([0-9] +) \] abc \ [[0-9] + \]
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 "[\ 0 \ 1 \ 2]" 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.
"\ 0" 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 to add "[" or "]". If you enter "other \ 0 \ 1 \ 2", the replacement result is:

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" representing 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 a comment! ";
"An error occurred when adding a user! ";

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;", meaning 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. abbreviation
Abeyance [2 'bei2ns] n. Stop
Abide [2 'baid] v. Follow
Ability [2 'biliti] n. Capability
Able ['ibl] 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. Stop ",
@ "Abide", "[2 'baid]", "v. Compliance ",
@ "Ability", "[2 'biliti]", "n. Capability ",
@ "Able", "['ibl]", "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. abandon ", @" abbreviation "," [2bri: vi 'ei62n] "," n. abbreviation ", @" abeyance "," [2 'bei2ns] "," n. stop ", @" abide "," [2 'baid] "," v. comply with ", @" ability "," [2 'biliti] "," n. capability ", @" able "," ['ibl] "," adj. competent and competent ", @" abnormal "," [9b' n0: m2l] "," adj. abnormal, abnormal ", @" aboard "," [2 'b0: d] "," adv. ship (car) on ", @" abolish "," [2 'b0li6] "," v. abolish, 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. Stop ",
"Abide", "[2 'baid]", "v. Compliance ",
"Ability", "[2 'biliti]", "n. Capability ",
"Able", "['ibl]", "adj. Competent and competent ",
"Abnormal", "[9b' n0: m2l]", "adj. abnormal, abnormal ",
"Aboard", "[2 'b0: d]", "adv. Ship (car ",
"Abolish", "[2 '0li6]", "v. abolish, cancel ",

 

Forwarded from: http://www.ccvita.com/83.html

Detailed description of replacing strings with EditPlus regular expressions

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.