22 lines
770 B
Markdown
22 lines
770 B
Markdown
|
|
<div align="center">
|
||
|
|
|
||
|
|
# Dev Case
|
||
|
|
|
||
|
|
A regex search and replace tool for preserving case
|
||
|
|
|
||
|
|
</div>
|
||
|
|
|
||
|
|
## Description
|
||
|
|
|
||
|
|
Dev Case is a command-line tool built with Rust that simplifies regex search
|
||
|
|
and replace operations while preserving the case of the matched text. It allows
|
||
|
|
developers to efficiently manipulate text files while maintaining the original
|
||
|
|
casing of the content.
|
||
|
|
|
||
|
|
## Features
|
||
|
|
|
||
|
|
- **Regex Search and Replace**: Perform search and replace operations using regular expressions.
|
||
|
|
- **Case Preservation**: Maintain the original casing of the matched text during replacement.
|
||
|
|
- **CLI Interface**: Command-line interface for easy integration into development workflows.
|
||
|
|
- **Built with Rust**: Utilizes the performance and safety benefits of the Rust programming language.
|