GUI中edit的输出形式为set(handles.editbox1,'string',str);其中editbox1对应输出到edit的tag值,str则对应待输出的字符串例如,字符串为str1=['baidu,hello']为了只输出其中一部分先进行截取操作str2=['baidu'];之后set(handles.editbox1,'string',str2);只输出了str1字符串中的baidu
函数inputdlg返回的变量check是cell类型的,edit控件可以接受cell类型,但如果要引用字符串的一部分,应该指定cell元素,例如: set(handles.edit2,'String',check{1}(2:4));