need help error checking my string input.
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Riley Phillips
le 3 Mai 2022
Commenté : Riley Phillips
le 3 Mai 2022
i need to error check this code
SkaDan = 'what are you looking for today? skating or dance\n';
Ans = input(SkaDan,'s');
i need it to move on if it spelled correct but if its not then i need it to spit out the message "ERROR, what are you looking for today? skating or dance"
0 commentaires
Réponse acceptée
Image Analyst
le 3 Mai 2022
Here's one way:
replyOK = false;
SkaDan = 'What are you looking for today? Skating or dance?\n';
while ~replyOK
reply = input(SkaDan, 's');
if strcmpi(reply, 'skating') || strcmpi(reply, 'dance')
replyOK = true; % or "break" to break out of loop
end
end
Plus de réponses (0)
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!