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

51,857 answers

573 users

How to right trim a string in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
  
void rtrim(char *s) {
    char spaces[] = "\n\t\v\f ";
    int len = strlen(s) - 1;
    while (len >= 0 && strchr(spaces, s[len]) != NULL) {
        s[len] = '\0';
        len--;
    }
}
      
int main() {
    char s[50] = "    c python c++ java php   ";
    
   printf("'%s'\n", s);
    
    printf("%i\n", strlen(s));
    rtrim(s);
    printf("%i\n", strlen(s));
     
    printf("'%s'\n", s);
     
    return 0;
}
      
     
     
      
/*
run:
       
'    c python c++ java php   '
28
25
'    c python c++ java php'
     
*/
  

 



answered Jun 25, 2020 by avibootz
edited Feb 14, 2024 by avibootz

Related questions

1 answer 125 views
125 views asked Jul 9, 2020 by avibootz
1 answer 125 views
125 views asked Aug 21, 2020 by avibootz
1 answer 152 views
1 answer 171 views
171 views asked Jul 11, 2020 by avibootz
1 answer 143 views
143 views asked Jul 11, 2020 by avibootz
1 answer 113 views
113 views asked Jul 10, 2020 by avibootz
1 answer 119 views
119 views asked Jul 10, 2020 by avibootz
...