如何将excel文件转换为文本文件?
谁能帮我如何将txt文件转换为xls文件?任何帮助将不胜感激。谢谢!
Can anyone help me how to convert txt file to xls file? Any help will be highly appreciated. Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在命令行上将 XLS 转换为 CSV
我猜上面的工作相反。
如果您想在 VB6 中处理数据本身(我假设您这样做是因为标签),请参阅从 此线程:
CSV 是 TXT 类型的特殊情况,其中字段以逗号分隔。您应该能够指定任何字符(包括空格或制表符)作为分隔符。
Convert XLS to CSV on command line
I guess the above works in reverse.
If you want to work with the data itself in VB6 (I assume you do because of the tag), see this code pinched from this thread:
CSV is a special case of TXT type where fields are comma-separated. You should be able to nominate any character including space or tab as the delimiter.