How to validate input dialog?
2 views (last 30 days)
Show older comments
caUserInput = inputdlg(Prompts, titleBar, 1);
if length(caUserInput) > 10
f = warndlg('Exceed numbers','Warning');
return
end
I insert some values from the input dialog,Then i need to check the length of the value is exced the 10,
How can i do it?
I try it in this way,But it dosent work.
0 Comments
Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!