3 Repos
Operations that divide a string into a list of substrings based on a specified delimiter.
Distinct from String Tokenization: Distinct from String Tokenization: focuses on splitting by a delimiter rather than general tokenization patterns.
Explore 3 awesome GitHub repositories matching software engineering & architecture · Delimiter-Based Splitters. Refine with filters or upvote what's useful.
Rainmeter is a Windows desktop widget engine that renders customizable skins and interactive widgets directly on the desktop, supporting live data feeds and user interaction. It functions as a desktop customization platform and skin authoring framework, allowing users to create widgets by defining data sources and visual elements with full style and layout control. The engine includes a Lua scripting runtime for extending widget functionality with custom logic and data processing, and provides a plugin SDK with a C/C++ API for building native plugins that add new data sources or rendering capa
Splits strings into parts using a delimiter character for data parsing in desktop widgets.
This is an open-source, crowd-sourced wiki textbook that teaches Linux system programming in C. It covers the core operating system concepts of process management through the fork-exec-wait model, dynamic memory allocation using implicit free list heap allocators, inode-based file systems, inter-process communication via pipes and shared memory, POSIX threads with synchronization primitives, signal-based asynchronous notification, virtual memory with page table translation, and runtime diagnostics using Valgrind and GDB. The textbook distinguishes itself by providing practical, implementation
Covers strtok-style delimiter-based string splitting, a common C programming technique in the textbook.
gray-matter ist eine Bibliothek zum Trennen, Parsen und Serialisieren strukturierter Konfigurationsdaten innerhalb textbasierter Dokumente. Sie fungiert als Extraktor für Dokumentmetadaten, der strukturierte Blöcke vom Hauptteil einer Datei isoliert, sowie als Serialisierungsbibliothek, die Datenobjekte zurück in formatierte Strings umwandelt. Das Projekt unterstützt die Extraktion von YAML-, JSON- und TOML-Metadatenblöcken vom Anfang von Strings oder Dateien. Es enthält Mechanismen zur Identifizierung des Vorhandenseins von Metadaten und zur Bestimmung der spezifischen Formatierungssprache basierend auf den Zeichen nach dem öffnenden Trennzeichen. Das System ist durch eine Plugin-basierte Parsing-Engine und benutzerdefinierte Parser-Registrierung erweiterbar, was benutzerdefinierte Logik für den Umgang mit nicht standardmäßigen Metadatensprachen ermöglicht. Die Funktionen decken die Identifizierung von Metadatensprachen, die Extraktion von Dateimetadaten und die symmetrische Serialisierung zur Rekonstruktion ursprünglicher Dokumentformate ab.
Splits documents into metadata and body sections using specified start and end delimiters.