Skip to content

RusProgger/StringHelp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 

Repository files navigation

🔤 StringHelp (C++)

Lightweight header-only C++ library for simple string case manipulation.


🌍 Languages

  • 🇬🇧 English
  • 🇷🇺 Русский
  • 🇺🇦 Українська

🇬🇧 English

📌 Description

StringHelp provides a minimal set of utilities for working with string case in C++.

✨ Features

  • Convert text to UPPERCASE
  • Convert text to lowercase
  • Capitalize the first letter of a string

🚀 Usage

Simply include the header file in your project:

#include "StringHelp.h"

💡 Example

#include <iostream>
#include "StringHelp.h"

int main()
{
    std::string text = "hello world";

    std::cout << ToUpper(text) << std::endl;
    std::cout << ToLower(text) << std::endl;
    std::cout << Capitalize(text) << std::endl;

    return 0;
}

📝 License

Licensed under the MIT License.


🇷🇺 Русский

📌 Описание

StringHelp — это лёгкая header-only библиотека для работы с регистром строк в C++.

✨ Возможности

  • Перевод текста в ВЕРХНИЙ РЕГИСТР
  • Перевод текста в нижний регистр
  • Капитализация первой буквы строки

🚀 Использование

Просто подключите заголовочный файл:

#include "StringHelp.h"

📝 Лицензия

Проект распространяется по лицензии MIT.


🇺🇦 Українська

📌 Опис

StringHelp — це легка header-only бібліотека для роботи з регістром рядків у C++.

✨ Можливості

  • Перетворення тексту у ВЕРХНІЙ РЕГІСТР
  • Перетворення тексту у нижній регістр
  • Капіталізація першої літери рядка

🚀 Використання

Просто підключіть заголовочний файл:

#include "StringHelp.h"

📦 Installation

Just copy StringHelp.h into your project and include it.


📝 Ліцензія

Проєкт поширюється за ліцензією MIT.


About

A lightweight C++ library for string manipulation, including uppercase, lowercase, and capitalization.

Resources

License

Stars

0 stars

Watchers

0 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages