如何用逗号分隔 praat 脚本中的每个元素打印数据我在这里使用的只是 tab$ 但我想用逗号替换
我的陈述是: resultline$ = soundname$+tab$+label$ + tab$ +"'pitchmax:6''tab$''pitchmin:6' 'tab$' 'pitchmean:6' 'newline$'"
任何帮助请
如何用逗号分隔 praat 脚本中的每个元素打印数据我在这里使用的只是 tab$ 但我想用逗号替换
我的陈述是: resultline$ = soundname$+tab$+label$ + tab$ +"'pitchmax:6''tab$''pitchmin:6' 'tab$' 'pitchmean:6' 'newline$'"
任何帮助请
这个问题在另一个问题中已经有了答案。简而言之:将您的值保存到一个表对象中,然后使用“另存为逗号分隔值...”命令将表另存为文本。
如果您仍想自己构建每个输出行,这可能是最不易于维护的方式......只需在要打印的值之间插入逗号:
sep$ = ","
resultline$ = soundname$ + sep$ + label$ + sep$ + "'pitchmax:6'" + sep$ + "'pitchmin:6'" + sep$ + "'pitchmean:6'" + newline$