C++ : Case-insensitive string comparison using STL | C++11 | Boost Library
In this article we will discuss different ways to Compare strings in case insensitive manner. (more…)
C++ : strcmp() Tutorial | Comparing strings
In this article we will discuss how to compare strings using strcmp(). (more…)
How to remove Substrings from a String in C++
In this article we will discuss how to remove single or multiple sub strings from a given string. (more…)
C++ : How to check if a String Ends With an another given String
In this article we will discuss both case sensitive and insensitive implementations to check if a string ends with an another given string. (more…)
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…)
C++ : Convert double to string and manage precision | scientific notation
In this article we will discuss different ways to convert double to String or char array with or without precision double to String using C++11's std::to_string std::to_string is introduced in…
Find and Replace all occurrences of a sub string in C++
In this article we will discuss how to replace all occurrences of a sub string with new string in C++. (more…)
Find all occurrences of a sub string in a string | C++ | Both Case Sensitive & InSensitive
In this article we will discuss how to find all occurrences / Positions of a sub string in a given string in both case sensitive & case insensitive manner. Find All…
Implementing a Case Insensitive string::find in C++
In this article we will discuss how to find a Case Insensitive Sub String in a given string in C++ using, (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…