9 个仓库
Retrieves segments of strings using indices or ranges.
Distinct from Substring Length Metrics: Distinct from Substring Length Metrics: focuses on extracting the actual content rather than calculating length metrics.
Explore 9 awesome GitHub repositories matching software engineering & architecture · Substring Extraction Methods. Refine with filters or upvote what's useful.
Crystal is a statically typed, compiled programming language designed for high performance and memory safety. It leverages an LLVM-based compiler to translate source code into optimized machine-executable binaries, while its type-inference-based static analysis enforces strict safety rules during the build process. The language distinguishes itself through a fiber-based concurrent runtime that manages lightweight execution units for asynchronous input and output without blocking the main process. It also features a powerful compile-time macro system that allows for the inspection and transfor
Retrieves specific segments of a string using character indices, length-based offsets, or ranges.
本项目是一个全面的教育资源和教程系列,用于学习 Bash 脚本和 Shell 编程。它作为在 Linux 环境中编写自动化脚本和创建可重用工具的技术指南和参考手册。 该材料专注于 DevOps 和 SysOps 自动化,涵盖了自定义命令行工具的开发、系统管理自动化,以及随机密码生成和 DDoS 防护等安全自动化的实现。 范围涵盖了核心语言基础(包括变量、循环和条件逻辑),以及系统健康监控、Web 服务器日志汇总和通过 SSH 进行远程服务器管理等操作功能。它还通过交互式菜单构建、输出格式化和命令别名处理终端交互。 内容组织为一系列指南、电子书和脚本参考。
Shows how to extract specific portions of strings using starting indices and lengths.
Carp is a statically typed Lisp compiler that compiles Lisp-like syntax directly to C source code, enabling seamless integration with existing C libraries and low-level system programming. It manages memory deterministically at compile time using ownership tracking and linear types, eliminating garbage collection pauses and runtime overhead while ensuring type safety through an inferred static type system. The language distinguishes itself through compile-time macro expansion and metaprogramming capabilities, allowing code generation and transformation before final binary output. It enforces
Provides substring extraction methods that retrieve segments of strings using start and end indices.
Amber 是一个将高级源代码转换为 Bash、Zsh 和 Ksh 可执行 Shell 脚本的转译器。它为 Shell 脚本生成提供了一个类型安全的环境,允许进行静态类型验证并创建独立的可执行脚本。 该项目通过包含 Tree-shaking 导入优化的编译过程来减小输出体积,并使用基于模板的脚本包装来添加自定义页眉和页脚。它利用基于模块的依赖解析系统,通过可见性控制来管理跨多个文件的代码复用。 该语言涵盖了广泛的自动化能力,包括全面的文件系统管理、进程控制以及通过 HTTP 进行的网络通信。它提供了用于文本处理、数据操作、日期时间管理和系统内省的内置工具。 该工具集包含一个用于逻辑验证的集成测试运行器,以及一个从源代码注释自动生成 Markdown 项目文档的工具。
Provides a utility to extract specific segments of strings using index and length parameters.
这是一个综合教育资源,包含 Bash 编程教程、脚本参考和 Linux 命令行手册。它提供用于编写脚本、自动化系统任务以及掌握终端导航和 Unix 系统管理的教学材料。 这些指南涵盖了广泛的 Shell 环境定制,包括提示符样式和别名的使用。它还提供了一个用于管理配置文件和初始化用户环境的 Shell 环境指南。 这些材料详细说明了一套广泛的功能,包括控制流逻辑、使用索引和关联数组的数据管理以及文本处理。其他涵盖的领域包括文件和资源管理、使用正则表达式的模式匹配,以及用于脚本调试和语法验证的可观测性工具。 该资源还解释了交互式终端功能,如命令历史记录检索、输入补全以及用于命令行导航的键盘快捷键。
Provides techniques for extracting specific portions of a string based on offset and length.
sqlean 是一个实现为 C 语言共享库的 SQLite 扩展库合集。它提供了一套额外的标量和表值函数,扩展了 SQLite 数据库引擎的原生功能。 该项目为密码学、高等数学、网络和文件系统访问提供了专门的工具集。这些包括二进制哈希和编码、统计分析、IP 地址验证,以及将 CSV 文件或文件系统路径映射为虚拟表的能力。 该库还包括全面的文本处理工具,如正则表达式、模糊匹配和 Unicode 感知字符串操作。其他功能涵盖高精度日期和时间管理以及唯一标识符的生成。
Retrieves specific portions of strings using start positions, lengths, or ranges.
This repository is a curated guide and implementation library of coding patterns used to solve data structures and algorithms problems. It serves as a technical interview study resource, providing a comprehensive set of strategies and computational logic examples for optimizing time and space complexity. The project focuses on standardized algorithmic patterns, including sliding windows, two pointers, and dynamic programming. It features specific implementations for a wide range of challenges, such as LeetCode problem solutions and specialized techniques like cyclic sort and bitwise XOR opera
Provides logic to find the smallest substring containing a required set of characters.
This library is a header-only C++ framework that performs regular expression evaluation and static string analysis during the compilation phase. By leveraging template metaprogramming and constant expression evaluation, it transforms pattern matching logic into static state machines, effectively shifting the cost of parsing and validation from runtime to build time. The project distinguishes itself by encoding text data directly into the type system, allowing for the validation and extraction of string content before a program ever executes. This approach ensures that regular expression patte
Enables retrieving specific segments of matched text during compilation to use those values within constant expressions or template logic.
This project is a garbage collection library and memory allocator for C and C++ that provides automatic reclamation of unreachable objects. It functions as a memory management system that can replace standard allocation functions to automate memory reclamation without requiring source modification. The system is distinguished by its ability to perform incremental and generational garbage collection to reduce application pauses, as well as parallel collection to distribute tracing across multiple CPU cores. It includes a specialized string manipulation library that uses shared structures to en
Creates new string references representing specific ranges from existing sequences without duplicating underlying data.