Zhuang Dai

Results 19 comments of Zhuang Dai

我试了,没啥问题,是不是文件最后默认有一个空行的原因?

源文件第一行默认是表头哈,这个表头会添加到所有文件,所以多了一行。 `rsv split data.csv # default the first row of data.csv is header` `rsv split --no-header data.csv # no header`

从下面的提示 “C:\Users\ribbondz\.cargo\registry\src\index.crates.io-6f17d22bba15001f\ntapi-0.3.7\src\ntexapi.rs:2783:52” 应该是cargo版本升级和ntexapi包依赖错误引起的,目前我没找到一个修复的方法,抱歉! 为了避免上面的错误,可以用`cargo build --release`编译。 此外,项目的xlsxwriter包依赖LLVM,请提前安装,地址如下: https://llvm.org/

Can you provide more detail about the error. Is it a plain text file (*.txt, *.csv) or an Excle file? Is the cell contains the comma is quoted with "?

Thank you for the detailed reply. I can notice that the problem is caused because the utility does not handle within-column comma separator properly. It conflicts with the file comma...

Thank you for the report. Right now, I think the within-field comma cound be handled properly. For example, given the following Excel table: ![image](https://github.com/user-attachments/assets/5292962e-013c-4c8c-bf10-c328f32d30fd) Right CSV file could be generated...

Do you mean convert CSV str field to date series number in Excel? I can add the functionality. But I highly recommend you trying other data manipulating tools like Polars...

This feature is my most wanted. Change font color and size every time open a tab is very annoying. Please consider the feature.

Yes, only UTF8 are supported, as files are generally read using BufReader right now. If you encounter ANSI encoded file, I suggest you to use another tool to do the...