C++C++11C++14C++17Introduction to C++Learn C++

How To Replace A String Into Another String In A C++ App


How can I use replace() method of std::string in a C++ app? How can I replace a string into another string? Can we replace a char array into a string? How can I replace a number of chars into a string? Is it possible to replace a string with a substring of another string? Here are the answers with C++ examples.

First, let’s recap on how strings work in a C++ app

In addition to int, float, double there is another data type, string that we use for alphanumeric variables. In C++ there are several typedefs for common character types. String types are defined in the header <string>.

strings are the string class for byte characters represented with string. Usually, alphanumeric characters are stored and displayed in string forms. In other words, string stores the alphanumeric text with 1-byte chars, called ASCII chars. Strings are the instantiation of the basic_string class template that uses char as the character type. Simply we can define a string as below,

string has methods to assign, copy, align, replace or to operate with other strings. These methods can be used in all string methods with their appropriate syntax. We can replace a string into another string in different methods. Let’s see some of most used methods.

Replacing a String into another String with the replace() Method

The replace() method of std::string, replaces the part of the string indicated by either start and end index positions with a new string. That means the string between start and end index positions will be replaced with a new string. We can use replace() method with the range parameter, just give the start position index and replacement count to define range (start_position, replace_count, where to replace in range ) and the string to be replaced (replace_str). Here is syntax of a replace() method,

Here is a example how we can use replace() method with in this given syntax, see example below,

and the output will be,

Getting your C++ app to replace a Char Array into a String with the replace() Method

replace() method of std::string, replaces the part of the string indicated by either start and end index positions with a new string. That means the string between start and end index positions will be replaced with a new string. We can use replace() method with the range parameter, just give the start position index and replacement count to define range (start_position, replace_count, where to replace in range ) and the string to be replaced (replace_str). Here is syntax of a replace() method,

Here is a example how we can use replace() method with in this given syntax, see example below,

and the output will be,

Replacing a given quantity of Chars into a String with the replace() Method

replace() method of std::string, can be used to replace chars in given numbers. To do this we should use parameters to indicate by either start and end index positions (start_position, end_position, where to replace) and the char count (char_count) and the char in ‘ ‘ (replace_char). Here is syntax of a replace() method,

Here is a example how we can use replace() method with in this given syntax, see example below,

and the output will be,

Replacing a Substring in a C++ app into another String with the replace() Method

replace() method of std::string, can be used to replace a substring into another string. To do this we should use parameters to indicate by either start and end index positions (start_position, end_position, where to replace) and the char count (char_count) and the sub string. Here is syntax of a replace() method,

Here is a example how we can use replace() method with in this given syntax, see example below,

and the output will be,

Note that, this replace method can be used with std::wstring too.

Oh hi there 👋
It’s nice to meet you.

Sign up to receive awesome C++ content in your inbox, every day.

We don’t spam! Read our privacy policy for more info.

About author

Dr. Yilmaz Yoru has 35+ years of coding with more than 30+ programming languages, mostly C++ on Windows, Android, Mac-OS, iOS, Linux, and some other operating systems. He graduated and received his MSc and PhD degrees from the Department of Mechanical Engineering of Eskisehir Osmangazi University. He is the founder and CEO of ESENJA LLC Company. His interests are Programming, Thermodynamics, Fluid Mechanics, Artificial Intelligence, 2D & 3D Designs, and high-end innovations.
Related posts
C++C++11C++14C++17C++20Introduction to C++Learn C++

Learn Copy Constructors in C++ Classes

C++C++11C++14C++17Introduction to C++Learn C++Syntax

Learn How To Use Types Of Destructors In C++?

C++C++11C++14Learn C++Syntax

How To Convert u32string To A wstring In C++

C++C++11C++14C++17C++20Introduction to C++Learn C++

How To Learn The Move Constructors In Modern C++?