Skip to content
Related Articles
Open in App
Not now

Related Articles

std::string::clear in C++

Improve Article
Save Article
Like Article
  • Difficulty Level : Basic
  • Last Updated : 06 Jul, 2017
Improve Article
Save Article
Like Article

The string content is set to an empty string, erasing any previous content and thus leaving its size at 0 characters.
Parameters: none
Return Value: none

void string ::clear ()
- Removes all characters (makes string empty)
- Doesn't throw any error
- Receives no parameters and returns nothing




// CPP code to illustrate
// clear() function
  
#include <iostream>
#include <string>
using namespace std;
  
// Function to demo clear()
void clearDemo(string str)
{
    // Deletes all characters in string
    str.clear();
  
    cout << "After clear : ";
    cout << str;
}
  
// Driver code
int main()
{
    string str("Hello World!");
  
    cout << "Before clear : ";
    cout << str << endl;
    clearDemo(str);
  
    return 0;
}

Output:

Before clear : Hello World!
After clear : 


Related Article:
std::string::erase
This article is contributed by Sakshi Tiwari. If you like GeeksforGeeks (We know you do!) and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.

Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.

My Personal Notes arrow_drop_up
Like Article
Save Article
Related Articles

Start Your Coding Journey Now!