首页 > 代码库 > 去除字符串左边的空格

去除字符串左边的空格

/**
去除字符串左边的空格
*/
#include <stdio.h>
int main(void){
   char s[100]="  hello world";
   
   int len =0 ;
   while(s[len++] ==  );
   len--;//得到字符串左边空格数量
   
   int i=len;
   while(s[i]){//移位操作
     s[i-len]=s[i];
     i++;
   }
   s[i-len]=0; //将字符串后面不0;
   printf("(%s)\n",s);
   return 0;
}

 

去除字符串左边的空格