Skip to content

dSyncro/Better-Strings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Better-Strings

C++ String implementation with extra functions compared to std::string

Purposes of this library

The main aim of this library is to provide a custom implementation of string, easier to use compared to the std one (not necessary faster).

Getting Started

This library is very easy to use as it syntax is pretty similar to the standard c++ one.

string a = "Hello";
s += ' ';

string b = "World!";

std::cout << (a + b) << std::endl;

// Output is 'Hello World!'

But it has also many improvements, for example:

string s = "Hello ";

std::cout << (s * 4) << std::endl;

// Output is 'Hello Hello Hello Hello'

Contributing

Contributing will make you an amazing person, this project really needs your help.

Authors

  • Domenico Mancini - unique developer - dSyncro

Looking for amazing people that could help improving this project.

License

This project is licensed under the MIT License - see the LICENSE file for details

About

C++ String implementation with extra functions compared to std::string

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages