current location: Home > Download > Learning resources > Web page production > DEELX regular expression
DEELX regular expression
Classify: Learning materials / Web page production | Release time: 2018-01-10 | visits: 2991002 |
Download: 171 |
Latest Downloads
Red Alert Online
Delta Force
Pokémon UNITE
Fantasy Aquarium
Girls Frontline
Wings of Stars
Little Flower Fairy Fairy Paradise
Restaurant Cute Story
Shanhe Travel Exploration
Love and Producer
24 HoursReading Leaderboard
- 1 How Can I Avoid Go Package Name Collisions When Choosing Names Like \"text\"?
- 2 Monopoly Go: How To Change Your Dice
- 3 How Can I Color Unicode Emojis in Web Browsers?
- 4 How to Run a Java Main Method Using Maven?
- 5 How Do I Efficiently Check if an Item Exists in a JavaScript Array?
- 6 How Can I Detect File Changes in Go?
- 7 How Can I Preserve Image Aspect Ratio in CSS Flexbox While Allowing Flexible Height?
- 8 How to Efficiently Extract Date Values from a DateTime Column in MySQL?
- 9 Why Does PHP Throw a "Fatal error: [] operator not supported for strings" Error?
- 10 Why Is My Flex Container's `min-height` Ignored in IE10 and IE11?
- 11 Can Python Programs Be Run as Windows Services?
- 12 How Can I Efficiently Get a List of Subdirectories (All or Just Immediate) in Python?
- 13 How Can I Iterate Through and Display JSON Data Using jQuery?
- 14 How to Convert Local Time Strings to UTC?
- 15 Why is "this" undefined inside a React component function?
Latest Tutorials
-
- Go language practical GraphQL
- 2199 2024-04-19
-
- 550W fan master learns JavaScript from scratch step by step
- 3629 2024-04-18
-
- Getting Started with MySQL (Teacher mosh)
- 1916 2024-04-07
-
- Mock.js | Axios.js | Json | Ajax--Ten days of quality class
- 2720 2024-03-29
DEELX is a Perl-compatible regular expression engine in the C environment. is a research and development project conducted by RegExLab.
Basic Features:
Supports Perl-compatible regular expression syntax.
Supports common matching modes such as IGNORECASE, SINGLELINE, MULTILINE.
It has strong compatibility and can be compiled in most C environments such as vc6, vc7, vc8, gcc, Turbo C, etc.
Supports multiple advanced features such as named grouping, conditional expressions, recursive expressions, etc. (New features in version 1.2)
Compared with GRETA and boost, DEELX is unique:
Completely written using template libraries, supporting char, wchar_t, int, etc. and other base type versions.
All codes are located in one header file (.h), which is simpler and more convenient to use than any other engine.
Supports right-to-left matching mode, searching for matches from the end of the text forward.
This prevents infinite loops caused by zero-length submatches looping infinitely. (New features in version 1.2)
DEELX shortcomings:
DEELX is a completely free lab product.
In order to make up for the shortcomings of laboratory products, this site has simultaneously launched a debugging tool that is fully compatible with this engine: Match Tracer.