我有一个excel文件,有时候跑步者达到9次中间检查。因此,每个参与者的总次数为9,但实际时间之间的大量条目是空格。如何删除每列中的空白?
我已尝试转换为txt并执行以下操作但未成功,因为列时间之间不再有任何分隔:
tr -d ' ' < input.txt > no-spaces.txt
tr -d '[:blank:]' < input.txt > no-spaces.txt
tr -d '[:space:]' < input.txt > no-spaces.txt
https://askubuntu.com/questions/537956/sed-to-delete-blank-spaces
我所追求的是以下内容: