Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Origin 中执行以下 LabTalk 脚本:
for(ii=1; ii<=4; ii++) { string iiString$ = $(ii) newbook name:="iiString" sheet:=1 option:=lsname }
我只是将它粘贴到脚本窗口中,然后在我的键盘上点击“输入”,没有任何反应。我还尝试在后面加上一个分号:
第一排; 所有文本行;循环中的行;任何行。
我还尝试了带有循环内预期行的版本。可能是什么问题?
您调用字符串变量的语法不正确。如果您使用iiString$而不是"iiString"它可以正常工作:
iiString$
"iiString"
for(int ii=1; ii<=4; ii++) { string iiString$ = $(ii) newbook name:=iiString$ sheet:=1 option:=lsname }