Remove extra white space from inside a C string?

前端 未结 9 2311
心在旅途
心在旅途 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:24

    Why not use strtok() directly? No need to modify the input

    All you need to do is repeat strtok() until you get 3 non-space tokens and then you are done!

提交回复
热议问题