Skip to content

Releases: Usama-Azad/String-in-Cpp

Third Release

18 Oct 12:23
Compare
Choose a tag to compare

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;
}

Second Release

26 Jul 18:10
Compare
Choose a tag to compare

July 2021 (version 2.0.1)

Second Release: v2.0.1
Welcome to the July 2021 release of String Library.

What's New

  1. Update some Algorithms for better Performance.
  2. Added some new operators like *, << & ~.

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;
}

First Release

25 Dec 09:06
Compare
Choose a tag to compare

December 2020 (version 1.0.1)

First Release: v1.0.1
Welcome to the December 2020 release of String Library.

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() << endl;

    return 0;
}