7 रिपॉजिटरी
Validates the syntactic correctness of regular expression patterns and reports errors.
Distinct from Syntax Validation: Distinct from general Syntax Validation: focuses specifically on regex pattern syntax, not JSON or SQL syntax.
Explore 7 awesome GitHub repositories matching development tools & productivity · Regex Pattern Syntax Validations. Refine with filters or upvote what's useful.
Regulex is a tool that parses regular expressions into interactive syntax diagrams, rendering them directly on an HTML canvas. It converts a regex string into an abstract syntax tree and visualizes the structure as a navigable diagram, making the internal logic of a regular expression visually accessible. Beyond basic visualization, Regulex provides syntax validation that detects and reports precise errors, including invalid back references and octal escapes. It also offers a state-machine visualization mode that maps regex AST nodes to NFA-like states and transitions, rendered as a directed
Validates the syntactic correctness of regular expression patterns and reports precise errors.
Hyperscan is a high-performance regular expression matching library that scans large volumes of data against thousands of patterns simultaneously. It accepts PCRE-compatible regular expressions and supports multi-pattern matching in a single pass, approximate matching within a configurable edit distance, and streaming mode for processing data that arrives in blocks. The library is designed for throughput-oriented scanning across block, streaming, and vectored inputs. What distinguishes Hyperscan is its hybrid automata engine, which combines deterministic and nondeterministic finite automata t
Validates the syntactic correctness of regular expression patterns before compilation.
Melody एक रेगुलर एक्सप्रेशन ट्रांसपाइलर और पैटर्न कंपाइलर है जो एक उच्च-स्तरीय, मानव-पठनीय सिंटैक्स को स्टैंडर्ड रेगुलर एक्सप्रेशंस में अनुवादित करता है। यह जटिल मिलान पैटर्न के निर्माण और रखरखाव को सरल बनाने के लिए एक टूल के रूप में कार्य करता है। यह प्रोजेक्ट एक्सप्रेशंस के भीतर दोहराव को कम करने के लिए पुन: प्रयोज्य वेरिएबल्स और मैक्रोज़ को परिभाषित करने के लिए एक विशेष सिंटैक्स प्रदान करता है। इसमें यूनिकोड श्रेणी गुणों के लिए विशेष लेबल्स को मैप करने के लिए नेटिव समर्थन शामिल है और यह स्वचालित रूप से लिटरल टेक्स्ट के एस्केपिंग को संभालता है। यह सिस्टम कई इंटरफेस के माध्यम से सुलभ है, जिसमें स्ट्रिंग्स या फाइलों के खिलाफ पैटर्न को कंपाइल और टेस्ट करने के लिए एक कमांड-लाइन टूल, रियल-टाइम मूल्यांकन के लिए एक स्टेटफुल इंटरैक्टिव REPL, और JavaScript बिल्ड पाइपलाइन्स में सिंटैक्स ट्रांसफॉर्मेशन को एकीकृत करने के लिए एक Babel प्लगइन शामिल है। यह बिना लोकल इंस्टॉलेशन के सिंटैक्स का परीक्षण करने के लिए ब्राउज़र-आधारित इंटरफ़ेस भी प्रदान करता है। यह कंपाइलर कैप्चर ग्रुप्स, लुकअराउंड असर्शन, कैरेक्टर क्लासेस और क्वांटिफायर्स जैसी स्टैंडर्ड रेगुलर एक्सप्रेशन क्षमताओं का समर्थन करता है।
Enables the construction of regular expressions using human-readable, natural-language helpers.
Super-expressive एक ज़ीरो-डिपेंडेंसी JavaScript लाइब्रेरी और डोमेन-विशिष्ट भाषा है जिसका उपयोग जटिल रेगुलर एक्सप्रेशंस बनाने के लिए किया जाता है। यह एक पैटर्न जनरेटर के रूप में कार्य करता है जो नेटिव रेगुलर एक्सप्रेशन ऑब्जेक्ट्स या स्ट्रिंग्स बनाने के लिए नेचुरल लैंग्वेज सिंटैक्स का उपयोग करता है, जो यूनिकोड प्रॉपर्टी मैचिंग के माध्यम से अंतरराष्ट्रीय टेक्स्ट मानकों का समर्थन करता है। यह लाइब्रेरी मैनुअल स्ट्रिंग हेरफेर और एस्केपिंग को एक मेथड-चेनिंग फ्लुएंट इंटरफेस से बदल देती है। यह मॉड्यूलर एक्सप्रेशन संरचना की अनुमति देती है, जो पुन: प्रयोज्य पैटर्न पदानुक्रम के निर्माण को सक्षम बनाती है जहाँ मौजूदा एक्सप्रेशन इंस्टेंस को सब-एक्सप्रेशंस के रूप में नेस्ट किया जा सकता है। यह टूल एंकर बाधाओं, कैप्चर ग्रुप्स, क्वांटिफायर्स, और लुकअराउंड एसेर्शन सहित मैचिंग प्रिमिटिव्स की एक विस्तृत श्रृंखला को कवर करता है। यह कैरेक्टर क्लास और सेट परिभाषाओं के लिए यूटिलिटीज, और केस-इनसेंसिटिविटी व मल्टीलाइन मोड जैसे ग्लोबल मैचिंग फ्लैग्स के कॉन्फ़िगरेशन भी प्रदान करता है।
Implements a domain-specific language with natural-language helpers to define regular expressions.
i-hate-regex is a suite of interactive utilities for constructing, validating, configuring, and visualizing regular expressions. It provides a specialized environment for regular expression construction and debugging, allowing users to build complex patterns and verify matching behavior through interactive testing. The project features a regular expression generator with a real-time matching preview and a visual representation tool that displays the logical structure of a pattern. It also includes a curated library of standardized patterns for common data formats, including email addresses, I
Checks for errors in regular expression code and uses highlighting to identify problematic segments.
magic-regexp is a type-safe regular expression builder and TypeScript compiler. It allows for the construction of JavaScript regular expressions using a readable syntax that automatically generates precise types for captured groups, ensuring predictable data extraction. The project functions as a build-time transformer that converts custom pattern syntax into standard regular expression objects. This static compilation removes runtime overhead by shifting the transformation logic to the build process. The tool covers named capture group generation and a readable construction API that replace
Constructs regular expressions by chaining natural-language helpers like exactly, maybe, and oneOrMore instead of writing raw patterns.
Frege is a purely functional programming language that compiles to JVM bytecode, providing Haskell-like semantics for the Java platform. It is built around a Haskell-inspired compiler that implements non-strict evaluation and a static type inference system to ensure data immutability and prevent side effects. The project distinguishes itself through a sophisticated type system featuring rank polymorphism, type-class based dispatch, and static purity enforcement. It includes a JVM language bridge and a foreign function interface that map Java classes and interfaces into functional types, allow
Provides validation for regular expression patterns defined using grave-accented character sequences.