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

51,810 answers

573 users

How to extract only special characters from char array in C

1 Answer

0 votes
#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 
#include <ctype.h> 
 
void extract_special_characters(char *s, int len, char *special_characters) { 
    int special_characters_i = 0;
     
    for (int i = 0; i < len; i++) { 
        char ch = s[i]; 
         if (!isalnum(ch) || ch == ' ') 
            special_characters[special_characters_i++] = ch; 
    } 
    special_characters[special_characters_i] = '\0';
} 
    
int main() 
{ 
    char arr[] = "c++14$vb.net&%java*() php <>/python 3.7.3"; 
    char *special_characters = (char *)malloc(strlen(arr) + 1 * sizeof(char));
     
    extract_special_characters(arr, strlen(arr), special_characters);
     
    puts(arr);
    puts(special_characters);
     
    free(special_characters);
      
    return 0; 
} 
    
    
    
/*
run:
    
c++14$vb.net&%java*() php <>/python 3.7.3
++$.&%*()  <>/ ..
  
*/

 



answered Aug 13, 2019 by avibootz

Related questions

1 answer 153 views
1 answer 163 views
1 answer 162 views
1 answer 165 views
1 answer 157 views
1 answer 164 views
...