If you want to learn regular expression online tutorials quickly and easily, I recommend Baidu search A 30-minute tutorial on regular expressions
, learn basic usage in 30 minutes Regular Expressions

Regular Expression Generator
- This is a regular expression generation tool developed by this site, in the root directory of the software file
Regular Expression Generator.exe
That is, you can generate commonly used regular expressions, but advanced ones (balanced groups/recursive matching) are too complicated and generally not needed.

The string is divided into multiple segments and matched separately

beginning
- It can be added at most once.
- Can be set not to capture
middle
- Can be added multiple times
- Must capture
end
- It can be added at most once.
- Can be set not to capture
Add each regular expression interface

Matching Strings
- You can choose built-in meta strings or custom combination strings.
Character length limit
- You can set a length limit for the matching segment string.
Click Add to generate an expression that matches a certain string. It consists of multiple segments. You can add it multiple times.
Software Demo

Keywords in this article
- Regular expression automatic generation tool
- Regular Expression Generator
- A 30-minute tutorial on regular expressions