Remove extra white space from inside a C string?

前端 未结 9 2330
心在旅途
心在旅途 2021-01-06 04:05

I have read a few lines of text into an array of C-strings. The lines have an arbitrary number of tab or space-delimited columns, and I am trying to figure out how to remove

9条回答
  •  余生分开走
    2021-01-06 04:29

    char* trimwhitespace(char *str_base) {
        char* buffer = str_base;
        while((buffer = strchr(str_base, ' '))) {
            strcpy(buffer, buffer+1);
        }
    
        return str_base;
    }
    

提交回复
热议问题