awesome-repositories.com
Blog
awesome-repositories.com

Découvrez les meilleurs dépôts open-source grâce à notre recherche par IA.

ExplorerRecherches sélectionnéesAlternatives open sourceLogiciels auto-hébergésBlogPlan du site
ProjetÀ proposNotre méthodologiePresseServeur MCP
Mentions légalesConfidentialitéConditions d'utilisation
© 2026 Bringes Technology SRL·VAT RO45896025·hello@awesome-repositories.com
·

4 dépôts

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

Trouvez les meilleurs dépôts grâce à l'IA.Nous recherchons les dépôts les plus pertinents grâce à l'IA.
  • ziishaned/learn-regexAvatar de ziishaned

    ziishaned/learn-regex

    46,092Voir sur 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
    Voir sur GitHub↗46,092
  • mawww/kakouneAvatar de mawww

    mawww/kakoune

    10,938Voir sur 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++
    Voir sur GitHub↗10,938
  • google/re2Avatar de google

    google/re2

    9,699Voir sur 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++
    Voir sur GitHub↗9,699
  • talater/annyangAvatar de TalAter

    TalAter/annyang

    6,814Voir sur 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
    Voir sur GitHub↗6,814
  1. Home
  2. Data & Databases
  3. Text Pattern Matching
  4. Capture Group Implementation