Tool to simplify a regex. Regexp simplificator (or regular expression) shortens the string of characters to search for patterns in a text.
Regular Expression Simplificator - 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!
The regular expressions simplifier (beta version) replaces useless elements in a regular expression in order to minimize it or make it more readable by analyzing patterns component of the regex string.
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 times! More, 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 Simplificator" source code. Except explicit open source licence (indicated Creative Commons / free), the "Regular Expression Simplificator" algorithm, the applet or snippet (converter, solver, encryption / decryption, encoding / decoding, ciphering / deciphering, translator), or the "Regular Expression Simplificator" functions (calculate, convert, solve, decrypt / encrypt, decipher / cipher, decode / encode, translate) written in any informatic language (Python, Java, PHP, C#, Javascript, Matlab, etc.) and all data download, script, or API access for "Regular Expression Simplificator" are not public, same for offline use on PC, tablet, iPhone or Android !
The copy-paste of the page "Regular Expression Simplificator" or any of its results, is allowed as long as you cite the online source
Reminder : dCode is free to use.