请教保存数据为.txt文件的问题
希望程序每次运行能够自动将某参数值转换成的字符串作文件名
以方便区分参数不同时各次运行的结果。
例如 第一次运行,某参数值为20,希望保存的文件为20.txt
第二次运行,该参数值为30,希望保存的文件名为30.txt
有什么简捷的办法实现么?
用将数字转换为字符串的vi
.243
这个我倒是知道,
就是想不出如何将转换出的字符串自动加入到 保存路径中。
请问有什么简单点的办法么?
?? 这个做不到吗?
可以把你的参数转变成字符串先
之后在把这个字符转与你想要保存的路径放到一起
把这个作为路径应该可以了吧?
1, Use Number to Decimal String.vi to convert the format of the number to string, e.g "20".
2, Use Concentrate Strings.vi to make "20.txt".
3, Use Path to string.vi to change the directory where you want to save the file to string. In this step you may need other vis, like, Strip Path.vi...
4, Use Concentrate Strings.vi again to make the path , like "C:\test\20.txt".
5, Use String to Path.vi
Then you will have the path.
抓时间字串组合自己设定的名字作为文件名存盘更保险,
我现在就这么干的。
.123
It is actually not necessary to convert the stings to path back and forth, because you can directly append strings to directory using "build path.vi".