- 1.Regexbuddy, a regular expression tool in Windows(For modification)
Regexbuddy and powergrep are recommended for regular expression tools in windows.
In Linux, there are also good Regular Expression tools, such as those of grep, but they are all based on command lines.
Regexbuddy: the URL is a http://www.regexbuddy.com. When writing a regular expression, it provides visual support, prompts, and debugging convenience. When using a regular expression, it unselfishly converts the regular expression into strings in multiple languages, code output is also provided. The latest version is version 3.4.2.
The basic interface is currently used to crack the version is 3.1.0 download path: http://download.csdn.net/source/2490133
The basic functions of the regular expression are nothing more than search and replacement. In this article, we use the regular expression matching email. The Code is as follows:
Perl:
/B [A-Z0-9. _ %-] + @ [A-Z0-9.-] +/. [A-Z] {2, 4}/B |
At this time, the regexbuddy Interface
Click test and highlight:
For other functions, download and practice it yourself. Refer to the user manual.