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

51,844 answers

573 users

How to left trim a string in C

1 Answer

0 votes
#include <stdio.h>
#include <string.h>
   
void ltrim(char *s) {
    char spaces[] = "\n\t\v\f ";
       
    size_t total_spaces_to_trim = strspn(s, spaces);
    if (total_spaces_to_trim > 0) {
        size_t len = strlen(s);
        if (total_spaces_to_trim == len) {
            s[0] = '\0';
        }
        else {
            memmove(s, s + total_spaces_to_trim, len + 1 - total_spaces_to_trim);
        }
    }
}
  
int main() {
    char s[50] = "    c python c++ java php   ";
    
    printf("'%s'\n", s);
    
    printf("%i\n", strlen(s));
    ltrim(s);
    printf("%i\n", strlen(s));
     
    printf("'%s'\n", s);
     
    return 0;
}
      
     
     
      
/*
run:
       
'    c python c++ java php   '
28
24
'c python c++ java php   '
  
*/
  

 



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

Related questions

1 answer 125 views
125 views asked Jul 9, 2020 by avibootz
2 answers 170 views
170 views asked Aug 21, 2020 by avibootz
1 answer 142 views
1 answer 131 views
131 views asked Jul 11, 2020 by avibootz
1 answer 151 views
151 views asked Jul 11, 2020 by avibootz
1 answer 122 views
122 views asked Jul 10, 2020 by avibootz
1 answer 123 views
123 views asked Jul 10, 2020 by avibootz
...