摘要:
切分字符串 首先CAPL中并没有内置的类似 C 中 strtok 的函数,有两种方法可以实现 将 strtok 封装到 CAPL DLL 中,然后调用 自己造个轮子,如下 参考:https://blog.csdn.net/qq_34414530/article/details/121209670 做 阅读全文
摘要:
# 读取文件 ``` #include #include #include int main(){ FILE *fp = fopen("tmp.csv", "r"); if(fp == NULL){ printf("read file failed\n"); exit(EXIT_FAILURE); 阅读全文