awesome-repositories.com
المدونة
awesome-repositories.com

اكتشف أفضل مستودعات المصادر المفتوحة باستخدام بحث مدعوم بالذكاء الاصطناعي.

استكشفعمليات بحث منسقةبدائل مفتوحة المصدربرمجيات ذاتية الاستضافةالمدونةخريطة الموقع
المشروعحولكيفية ترتيب النتائجالصحافةخادم MCP
قانونيالخصوصيةالشروط
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 مستودعات

Awesome GitHub RepositoriesCapture Group Implementation

Using grouped subpatterns to extract text for use in programming languages.

Distinct from Text Pattern Matching: Focuses on the extraction capability of groups rather than general text pattern discovery.

Explore 4 awesome GitHub repositories matching data & databases · Capture Group Implementation. Refine with filters or upvote what's useful.

Awesome Capture Group Implementation GitHub Repositories

اعثر على أفضل المستودعات باستخدام الذكاء الاصطناعي.سنبحث عن أفضل المستودعات المطابقة باستخدام الذكاء الاصطناعي.
  • ziishaned/learn-regexالصورة الرمزية لـ ziishaned

    ziishaned/learn-regex

    46,092عرض على GitHub↗

    This project is a regular expression learning resource and tutorial designed to teach the syntax and logic used to find, match, and manipulate text strings. It serves as a comprehensive guide and syntax reference for building complex search queries and data validation logic. The material covers the use of meta-characters, quantifiers, and boundary markers to define precise text match patterns. It includes instructional content on the logic of greedy and lazy matching, as well as the implementation of capture groups. The resource details a wide range of pattern matching capabilities, includin

    Details how to capture text within grouped subpatterns for use in applications.

    learn-regexregexregular-expression
    عرض على GitHub↗46,092
  • mawww/kakouneالصورة الرمزية لـ mawww

    mawww/kakoune

    10,938عرض على GitHub↗

    Kakoune is a scriptable, modal text editor for the terminal that employs a client-server architecture. This model allows multiple terminal windows to connect to a single editing session, providing a programmable environment for managing source code and text. The editor is distinguished by its selection-first logic, where a text region must be predefined before a command is applied. It leverages regular expressions to manage multiple cursors and perform bulk edits across complex text patterns, and it integrates deeply with the shell by piping selections through external programs and filters.

    The editor stores grouped sub-matches from a search into indexed registers.

    C++
    عرض على GitHub↗10,938
  • google/re2الصورة الرمزية لـ google

    google/re2

    9,699عرض على GitHub↗

    re2 is a C++ regular expression library designed for high-performance text processing. It is a non-backtracking regex engine that provides linear-time pattern matching, ensuring that execution time remains proportional to the size of the input string regardless of the pattern used. The library supports UTF-8 and Latin-1 text encodings for searching and extracting substrings. It includes capabilities for multi-pattern optimization, allowing multiple regular expressions to be combined into a single representation to scan text for several patterns in one pass. The project covers core regex oper

    Supports capturing specific substrings from text using named or numbered regular expression grouping expressions.

    C++
    عرض على GitHub↗9,699
  • talater/annyangالصورة الرمزية لـ TalAter

    TalAter/annyang

    6,814عرض على GitHub↗

    Annyang is a speech recognition library and web speech API wrapper that enables the integration of voice command interfaces into websites. It functions as a browser-based voice controller, mapping spoken phrases and regular expressions to specific JavaScript functions to trigger application actions. The library provides mechanisms for voice command mapping and simulation, allowing developers to associate spoken text with executable callbacks. It includes tools for command variable extraction using regular expression capture groups, which allows specific words from a spoken phrase to be passed

    Uses regex capture groups to extract specific words from spoken phrases as arguments for functions.

    TypeScript
    عرض على GitHub↗6,814
  1. Home
  2. Data & Databases
  3. Text Pattern Matching
  4. Capture Group Implementation