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 characters from char array in C

1 Answer

0 votes
#include <stdio.h> 
#include <string.h> 
#include <stdlib.h> 
#include <ctype.h> 

void extract_characters(char *s, int len, char *chars) { 
	int chars_i = 0;
	
    for (int i = 0; i < len; i++) { 
        char ch = s[i]; 
        if (isalpha(ch)) 
            chars[chars_i++] = ch; 
    } 
	chars[chars_i] = '\0';
} 
   
int main() 
{ 
    char arr[] = "c++$vb.net&%java*() php <>/python 3.7.3"; 
	char *chars = (char *)malloc(strlen(arr) + 1 * sizeof(char));
	
    extract_characters(arr, strlen(arr), chars);
	
	puts(arr);
	puts(chars);
	
	free(chars);
     
    return 0; 
} 
   
   
   
/*
run:
   
c++$vb.net&%java*() php <>/python 3.7.3
cvbnetjavaphppython
 
*/

 



answered Aug 13, 2019 by avibootz
...