Tool to simplify a regex. Regexp simplifier (or regular expression) shortens the string of characters to search for patterns in a text.
Regular Expression Simplifier - dCode
Tag(s) : Data Processing
dCode is free and its tools are a valuable help in games, maths, geocaching, puzzles and problems to solve every day!
A suggestion ? a feedback ? a bug ? an idea ? Write to dCode!
Regular expression simplification is a method for removing unnecessary elements from certain regular expressions in order to simplify, minimize or make it more readable by analyzing the patterns that make up the regex string.
The regular expressions simplifier (beta version) replaces useless elements in a regular expression.
Example: x{0,} is equivalent to x* through simplification
Example: [aaabbb] is equivalent to [ab]
Example: (ab|ac) can also be written a[bc]
Some regular expressions can not be simplified. In this case, the program will return the same string.
The program/optimizer is in beta test, and does not work all the time! Moreover, some parentheses, potentially useful for capturing can be deleted and escape characters can be ignored.
There are shorthand character classes and metacharacters:
abbreviation | equivalent |
---|---|
\d | [0-9] |
\w | [A-Za-z0-9_] |
\s | [ \t\r\n\f] |
\D | [^\d] |
\W | [^\w] |
\S | [^\s] |
The letter d for digit (digit), w for word (letter / alphanumeric character) and s for space (spacing), uppercase letters represent the negation of the set
Example: D for a character that is not a number, etc.
dCode retains ownership of the "Regular Expression Simplifier" source code. Any algorithm for the "Regular Expression Simplifier" algorithm, applet or snippet or script (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, breaker, translator), or any "Regular Expression Simplifier" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) or any database download or API access for "Regular Expression Simplifier" or any other element are not public (except explicit open source licence like Creative Commons). Same with the download for offline use on PC, mobile, tablet, iPhone or Android app.
Reminder: dCode is an educational and teaching resource, accessible online for free and for everyone.
The content of the page "Regular Expression Simplifier" and its results may be freely copied and reused, including for commercial purposes, provided that dCode.fr is cited as the source.
Exporting the results is free and can be done simply by clicking on the export icons ⤓ (.csv or .txt format) or ⧉ (copy and paste).
To cite dCode.fr on another website, use the link:
In a scientific article or book, the recommended bibliographic citation is: Regular Expression Simplifier on dCode.fr [online website], retrieved on 2025-04-26,