Daily Archives: December 5, 2020

C++ || How To Check If A String Is Empty Or Only Contains Whitespace Using C++

The following is a module with functions which demonstrates how to determine whether a string is empty, or consists only of white-space characters using C++.


1. Is Null Or Whitespace

The example below demonstrates the use of ‘Utils::isNullOrWhitespace‘ to determine whether a string is empty, or consists only of white-space characters.


2. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


3. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

C++ || How To Convert A String To Upper and Lower Case Using C++

The following is a module with functions which demonstrates how to convert a string to all upper and lower case using C++.


1. To Upper Case

The example below demonstrates the use of ‘Utils::toUpperCase‘ to convert a string to all upper case.


2. To Lower Case

The example below demonstrates the use of ‘Utils::toLowerCase‘ to convert a string to all lower case.


3. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


4. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

C++ || How To Remove All Whitespace From A String Using C++

The following is a module with functions which demonstrates how to remove all whitespace from a string using C++.


1. Remove All Whitespace

The example below demonstrates the use of ‘Utils::RemoveWhitespace‘ to remove all whitespace from a string.


2. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


3. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.

C++ || How To Get The File Path, File Name & File Extension From A Path Using C++

The following is a module with functions which demonstrates how to parse a file path, file name and file extension from a path using C++.


1. Get File Path

The example below demonstrates the use of ‘Utils::getFilePath‘ to parse and get the file path from a path.


2. Get File Name

The example below demonstrates the use of ‘Utils::getFileName‘ to parse and get the file name from a path.


3. Get File Name Extension

The example below demonstrates the use of ‘Utils::getFileExtension‘ to parse and get the file extension from a path.


4. Utils Namespace

The following is the Utils Namespace. Include this in your project to start using!


5. More Examples

Below are more examples demonstrating the use of the ‘Utils‘ Namespace. Don’t forget to include the module when running the examples!

QUICK NOTES:
The highlighted lines are sections of interest to look out for.

The code is heavily commented, so no further insight is necessary. If you have any questions, feel free to leave a comment below.