Tools for generating regular expressions
RegexGenerator
In looking for libraries that work similarly to the other tools discussed in this article, my research turned up limited results. For Python, I found RegexGenerator [16] and its associated regex-generator-lib [17].
Listing 1 shows a short script for RegexGenerator, which determines a regular expression for the string 415-5553-7676
. You can then save and run the regular expression as rg.py
(Listing 2). The generated regex shown in Listing 2 does the trick: a pattern consisting of three digits, followed by a minus sign, four digits, another minus sign, and another four digits.
Listing 1
RegexGenerator Script
from RegexGenerator import RegexGenerator myRegexGenerator = RegexGenerator("415-5553-7676") print(myRegexGenerator.get_regex())
Listing 2
rg.py
$ python3 rg.py \d{3}[-]\d{4}[-]\d{4}
However, this generated regex lacks precision. Not only does it match the above string, but it also matches other strings, such as 123-4567-8901
or foo-123-5553-7676-bar
. According to this regular expression, the digits can be arbitrary and the pattern can include other characters because the regex does not use delimiters such as \b
for word boundary, ^
for beginning of line, and $
for end of line.
Instead, A regex of ^415\-5553\-7676$
would be more precise and easier to read, resulting in the three digits 415
followed by a minus sign, three times the number 5
followed by a 3
, another minus sign, and then two times the sequence of digits 76
including characters for the beginning of the line (^
) and the end of the line ($
).
rex
If you use the rex
tool from Python's Test-Driven Data Analysis (tdda) package [18], there is a very neat, practical use case. The example shown in Listing 3 determines the regular expression for naming image files. All of the file names start with the three letters DSC
, followed by five numbers, a period, and the three letters .JPG
.
Listing 3
rex from tdda
$ ls images/*.JPG DSC06743.JPG DSC06745.JPG DSC06751.JPG DSC06754.JPG $ ls images/*.JPG | python3 tdda/rexpy/rexpy.py ^DSC\d{5}\.JPG$
The regular expression is correct, as far as it goes; it also includes two additional delimiters, ^
for beginning of line and $
for end of line. The regex excludes false positives as long as the pattern consists of the three uppercase letters DSC
followed by any five sections and the strings .JPG
. However, a more precise regular expression would be DSC067((4[35])|(5[14]))\.JPG
.
Again, the results returned by rex
from the tdda library end up in the middle of the pack in terms of precision. While rex
successfully matches the DSC
and JPG
portions of the pattern, it can produce a false positive for the digits in the sequence.
RegExTractor
To demonstrate the capabilities of RegExTractor [19], another Python regex extractor, I used random German license plates. Listing 4 first outputs the license plates followed by the regular expression that matches all license plates.
Listing 4
Running RegExTractor
$ python main.py Kennzeichen: A-BC 1234 CB-LN 5246E FR-CG 1554 TUT-R 712 AA-LN 5E The regex for this: [A-Z][A-Z]{0,2}\-[A-Z][A-Z]?\ [0-9][0-9A-Z]{1,4}
However, the regular expression that RegExTractor outputs is not correct. In particular, the last partial pattern of [0-9][0-9A-Z]{1,4}
allows any digit followed by a combination of one to four capital letters and digits.
A more accurate solution would be the subexpression [0-9]{1,4}E+
for one to four digits, followed only by the capital letter E
for electric cars. In testing, this problem occurred repeatedly. Consequently, I cannot recommend RegExTractor.
« Previous 1 2 3 Next »
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Direct Download
Read full article as PDF:
Price $2.95
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Find SysAdmin Jobs
News
-
LibreOffice 7.5 has Arrived and is Loaded with New Features and Improvements
The favorite office suite of the Linux community has a new release that includes some visual refreshing and new features across all modules.
-
The Next Major Release of Elementary OS Has Arrived
It's been over a year since the developers of elementary OS released version 6.1 (Jólnir) but they've finally made their latest release (Horus) available with a renewed focus on the user.
-
KDE Plasma 5.27 Beta Is Ready for Testing
The latest beta iteration of the KDE Plasma desktop is now available and includes some important additions and fixes.
-
Netrunner OS 23 Is Now Available
The latest version of this Linux distribution is now based on Debian Bullseye and is ready for installation and finally hits the KDE 5.20 branch of the desktop.
-
New Linux Distribution Built for Gamers
With a Gnome desktop that offers different layouts and a custom kernel, PikaOS is a great option for gamers of all types.
-
System76 Beefs Up Popular Pangolin Laptop
The darling of open-source-powered laptops and desktops will soon drop a new AMD Ryzen 7-powered version of their popular Pangolin laptop.
-
Nobara Project Is a Modified Version of Fedora with User-Friendly Fixes
If you're looking for a version of Fedora that includes third-party and proprietary packages, look no further than the Nobara Project.
-
Gnome 44 Now Has a Release Date
Gnome 44 will be officially released on March 22, 2023.
-
Nitrux 2.6 Available with Kernel 6.1 and a Major Change
The developers of Nitrux have officially released version 2.6 of their Linux distribution with plenty of new features to excite users.
-
Vanilla OS Initial Release Is Now Available
A stock GNOME experience with on-demand immutability finally sees its first production release.