C++ : Check if a String starts with an another given String
In this article we will discuss both case sensitive and insensitive implementations to check if a string starts with an another given string. (more…)
Convert First Letter of each word of a String to Upper Case in C++
In this article we will discuss different ways to convert first letter of each word to upper case in a a given string Using STL algorithm Using Boost Filtered Iterator…
How to trim strings in C++ using Boost String Algorithm Library
In this tutorial we will discuss how to use trim algorithms from C++ Boost String Algorithm Library. Let's learn them step by step, Boost String algorithm library provides different algorithms…