Convert character array to string in C++ – GeeksforGeeks

This article shows how to convert a character array to a string in C++. 
The std::string in c++ has a lot of inbuilt functions which makes implementation much easier than handling a character array. Hence, it would often be easier to work if we convert a character array to string.
Examples: 
 

Input: char s[] = { 'g', 'e', 'e', 'k', 's', 'f', 'o',
                     'r', 'g', 'e', 'e', 'k', 's' } ;
Output: string s = "geeksforgeeks" ;

Input: char s[] = { 'c', 'o', 'd', 'i', 'n', 'g' } ;
Output: string s = "coding" ;

 

  • Method 1: 
    Approach: 
    1. Get the character array and its size.
    2. Create an empty string.
    3. Iterate through the character array.
    4. As you iterate keep on concatenating the characters we encounter in the character array to the string.
    5. Return the string.

Below is the implementation of the above approach.

Tóm Tắt

C++




 

#include <bits/stdc++.h>

using namespace std;

 

string convertToString(char* a, int size)

{

    int i;

    string s = "";

    for (i = 0; i < size; i++) {

        s = s + a[i];

    }

    return s;

}

 

int main()

{

    char a[] = { 'C', 'O', 'D', 'E' };

    char b[] = "geeksforgeeks";

 

    int a_size = sizeof(a) / sizeof(char);

    int b_size = sizeof(b) / sizeof(char);

 

    string s_a = convertToString(a, a_size);

    string s_b = convertToString(b, b_size);

 

    cout << s_a << endl;

    cout << s_b << endl;

 

    return 0;

}



  • Method 2: 
    The std::string has an inbuilt constructor which does the work for us. This constructor takes in a null-terminated character sequence as it’s input. However, we can use this method only at the time of string declaration and it cannot be used again for the same string because it uses a constructor which is only called when we declare a string.
    Approach: 
    1. Get the character array and its size.
    2. Declare a string (i.e, an object of the string class) and while doing so give the character array as its parameter for its constructor.
    3. Use the syntax: string string_name(character_array_name);
    4. Return the string.

Below is the implementation of the above approach.

C++




 

#include <bits/stdc++.h>

using namespace std;

 

string convertToString(char* a)

{

    string s(a);

 

    

    

    

    

    

 

    

    

 

    

    

    

    

 

    return s;

}

 

int main()

{

    char a[] = { 'C', 'O', 'D', 'E' };

    char b[] = "geeksforgeeks";

 

    string s_a = convertToString(a);

    string s_b = convertToString(b);

 

    cout << s_a << endl;

    cout << s_b << endl;

 

    return 0;

}



  • Method 3: 
    Another way to do so would be to use an overloaded ‘=’ operator which is also available in the C++ std::string. 
    Approach: 
    1. Get the character array and its size.
    2. Declare a string.
    3. Use the overloaded ‘=’ operator to assign the characters in the character array to the string.
    4. Return the string.

Below is the implementation of the above approach.

C++




 

#include <bits/stdc++.h>

using namespace std;

 

string convertToString(char* a)

{

    string s = a;

    return s;

}

 

int main()

{

    char a[] = { 'C', 'O', 'D', 'E' };

    char b[] = "geeksforgeeks";

 

    string s_a = convertToString(a);

    string s_b = convertToString(b);

 

    cout << s_a << endl;

    cout << s_b << endl;

 

    return 0;

}



My Personal Notes

arrow_drop_up