Answers for "remove string in string"

11

python remove string from string

s = 'ab12abc34ba'
print(s.replace('ab', ''))
Posted by: Guest on September-12-2020
-1

take a string and a character, remove that character from string

cpp code
int main()
{
    string str;
    getline(cin,str);
    char c;
    cin>>c;
    
    string temp="";
    
    for(int i=0; i<str.size(); i++){
        
        if(str[i] == c)
          continue;
        temp += str[i];  
        
    }
    
    cout<<temp;

    return 0;
}
Posted by: Guest on August-11-2021

Code answers related to "remove string in string"

Python Answers by Framework

Browse Popular Code Answers by Language