Skip to content

Third Release

Latest
Compare
Choose a tag to compare
@Usama-Azad Usama-Azad released this 18 Oct 12:23
· 2 commits to master since this release

October 2021 (version 3.0.0)

Third Release: v3.0.0
Welcome to the October 2021 release of String Library.
Full Changelog: v2.0.1...v3.0.0

What's New

  1. Fix minor bugs
  2. Devide methods into two categories:
  • Methods with trailing underscore modifies the original string and return refrence to that string.
  • Methods with non-trailing underscore are constant and returns new modified string.

Get started

  1. Download the source code, and then,
  2. Paste the header files usastring.h , usastringfunctool.h and Resources in your project directory where your source.cpp or main.cpp files are present.
  3. Include usastring header file in your source.cpp or main.cpp file like #include"usastring.h".

#include  <iostream>
#include "usastring.h"
using namespace std;

int main()
{
    usa::string str = "Hello World!";
    cout << str.toUpperCase_().reverse_() << endl;

    return 0;
}