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,902 questions

51,833 answers

573 users

How to remove HTML tags from a string in C

1 Answer

0 votes
#include <stdio.h>
#include <stdbool.h>

void removeHTMLTags(char *src, char *dest) {
    bool inTag = false;
    
    while (*src) {
        if (*src == '<') {
            inTag = true;
        } else if (*src == '>') {
            inTag = false;
        } else if (!inTag) {
            *dest++ = *src;
        }
        src++;
    }
    
    *dest = '\0';
}

int main() {
    char src[] = "<html><body>C Programming, <b>bold</b>!</body></html>";
    char dest[128] = ""; 
    
    removeHTMLTags(src, dest);
    
    printf("%s\n", dest);
    
    return 0;
}


/*
run:

C Programming, bold!

*/

 



answered Mar 15, 2025 by avibootz

Related questions

1 answer 62 views
1 answer 73 views
1 answer 78 views
1 answer 79 views
1 answer 123 views
1 answer 208 views
4 answers 353 views
...