https://github.com/voltageddebunked/heika
A C# String manipulation library.
https://github.com/voltageddebunked/heika
Last synced: about 1 year ago
JSON representation
A C# String manipulation library.
- Host: GitHub
- URL: https://github.com/voltageddebunked/heika
- Owner: VoltagedDebunked
- License: apache-2.0
- Created: 2024-07-20T19:51:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-20T20:00:49.000Z (almost 2 years ago)
- Last Synced: 2025-02-03T16:58:13.839Z (over 1 year ago)
- Language: C#
- Size: 24.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Heika
Heika is a C# String manipulation library for easily working with strings, boolean algebra, and other.
## Features
Heika offers features like:
- String manipulation
- Dirty text
- Reverse string
- Special Character Removal
- Word counter
- Remove digits from string
# Usage
First, copy the repository:
```bash
git clone https://github.com/voltageddebunked/heika
```
Then, navigate to the files:
```bash
cd heika/src
```
And create a new file.
```bash
touch program.cs
```
Here's a simple example file:
```csharp
using System;
using Heika;
using Heika.Utils;
namespace HeikaDemo
{
class Program
{
static void Main(string[] args)
{
string text = "Hello, World! 123";
Console.WriteLine($"Original: {text}");
Console.WriteLine($"Reversed: {StringProcessor.Reverse(text)}");
Console.WriteLine($"Word Count: {StringProcessor.WordCount(text)}");
Console.WriteLine($"Without Digits: {StringProcessor.RemoveDigits(text)}");
string dirtyText = " Hello, World! 123 ";
Console.WriteLine($"Original: {dirtyText}");
Console.WriteLine($"Cleaned: {TextCleaner.RemoveSpecialCharacters(dirtyText)}");
Console.WriteLine($"Normalized: {TextCleaner.NormalizeWhiteSpace(dirtyText)}");
}
}
}
```
## License
This project is licensed under the `Apache 2.0` license. See the [LICENSE](LICENSE) file for details.