Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,988 questions

51,933 answers

573 users

How to remove specific characters from a string in C++

2 Answers

0 votes
#include <iostream>
#include <algorithm>
#include <string>

int main() {
    std::string phone = "(555) 555-5555";
    char charsToRemove[] = "()-";
    int length = sizeof(charsToRemove)/sizeof(char);
    
    for (int i = 0; i < length; i++) {
        phone.erase(std::remove(phone.begin(), phone.end(), charsToRemove[i]), phone.end());
    }

    std::cout << phone << std::endl;
}

 
 
/*
run:
   
555 5555555
   
*/

 



answered Mar 16, 2024 by avibootz
edited Mar 17, 2024 by avibootz
0 votes
#include <iostream>
#include <algorithm>
#include <string>

std::string remove_specific_characters_from_string(std::string &str, char charsToRemove[], int length) {
    for (int i = 0; i < length; i++) {
        str.erase(std::remove(str.begin(), str.end(), charsToRemove[i]), str.end());
    } 
    
    return str;
}
 
int main() {
    std::string phone = "(555) 555-5555";
    char charsToRemove[] = "()-";
    int length = sizeof(charsToRemove)/sizeof(char);
    
    remove_specific_characters_from_string(phone, charsToRemove, length);
 
    std::cout << phone << std::endl;
}
 
  
  
/*
run:
    
555 5555555
    
*/

 



answered Mar 17, 2024 by avibootz

Related questions

2 answers 186 views
1 answer 118 views
1 answer 107 views
1 answer 132 views
1 answer 79 views
...