如何删除打印的文本文件中的引号

How to delete quotation mark in text file printed

老实说,我是 scilab 的新手。 我正在使用 print 函数创建包含我的字符矩阵的 .txt 文件。 但是,当我打开 txt 文件时,出现了双引号。我只想要没有“”的单词。 这就是我使用 print

的方式
Compterendu(1,1)= "Medecin demandeur: " 
fileresname= fullfile(RES_PATH, "compterendu.txt") 
print(fileresname,Compterendu)

而且,compterendu.txt是这样打印出来的。

如有任何帮助,将不胜感激!! 谢谢

为什么使用“打印”?查看文档后,是的,它用于生成与在命令行上键入表达式或变量名时相同的文本。因此它确实 打印字符串的双引号。如果您需要更基本的东西,请使用较低级别的 i/o 命令,例如 mputl.

S.