我想在Matlab中编写一个包含Word中的选项卡的字符串。 这就是我所做的:
word = actxserver('Word.Application');
selection=word.Selection;
selection.TypeText('This document presents the results of ^t my study.')
这不起作用,只显示^ t。 我也尝试使用vbtab而不是^ t,同样的事情:只显示文本。 如何从Matlab向Word发送包含选项卡的字符串?
答案 0 :(得分:0)
如果'\t'
不起作用,请尝试使用char(9)
:
selection.TypeText(['This document presents the results of ',char(9),' my study.'])
9是制表符的ASCII码。