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

51,793 answers

573 users

How to trim whitespace (leading and trailing) from a string in C

1 Answer

0 votes
#include <stdio.h>
#include <ctype.h>
#include <string.h>
  
void trim_whitespace(char *s) {
  
  while (isspace((unsigned char)*s)) {
      strcpy(s , s + 1);
  }
    
  if (*s == 0)  
    return;
  
  char *end_s = s + strlen(s) - 1;
    
  while (end_s > s && isspace((unsigned char)*end_s)) end_s--;
  
  end_s[1] = '\0';
}
   
int main() {
    char s[50] = "    c python c++ java php   ";
 
    trim_whitespace(s);
      
    puts(s);
}
   
  
  
   
/*
run:
    
c python c++ java php
  
*/

 



answered Apr 3, 2019 by avibootz
edited Apr 4, 2019 by avibootz

Related questions

3 answers 388 views
1 answer 189 views
1 answer 155 views
1 answer 160 views
1 answer 156 views
1 answer 76 views
...