2
如果我使用inputdlg
命令將帶換行符的文本複製到提示符處,那麼Input
變量將顯示沒有換行符的文本。Inputdlg不檢測換行符
prompt = {'Input'};
dlg_title = 'Console';
num_lines = [1 45];
defaultans = {''};
answer = inputdlg(prompt,dlg_title,num_lines,defaultans);
Input=answer{1};
任何建議來解決這個問題?
「帶換行符的文本」是什麼意思?什麼是複製您的問題的輸入? – excaza
文本換行: hello1 \ n hello2 。文本不換行: hello1 hello2 – hello123