Answers for "how to remove spaces in start of string in cpp"

C++
1

c++ remove space from string

static std::string removeSpaces(std::string str)
{
	str.erase(remove(str.begin(), str.end(), ' '), str.end());
	return str;
}
Posted by: Guest on March-02-2020
0

remove space in string c++

string removeSpaces(string str)
{
    stringstream s(str);
    string temp;
    str = "";
    while (getline(s, temp, ' ')) {
        str = str + temp;
    }
    return str;
}
//Input: Ha Noi Viet Nam
//Output: HaNoiVietNam
Posted by: Guest on April-16-2021

Code answers related to "how to remove spaces in start of string in cpp"

Browse Popular Code Answers by Language