I have added an edit box in a gui. I want that Neither alphabets nor special characters appear in it. Only the numbers are allowed to be appeared

2 Ansichten (letzte 30 Tage)
data= uicontrol (‘style’, ‘edit’, ‘string’, ‘ ‘, ‘position’, [35,30,60,15]);
&&& comment if user presses any alphabet or special character, nothing should be appeared in edit text box&&&

Antworten (1)

Cris LaPierre
Cris LaPierre am 30 Jan. 2019
Bearbeitet: Cris LaPierre am 30 Jan. 2019
Are you using App Designer or GUIDE? What version are you on?
If using App Designer, use the Edit Field (Numeric). If using GUIDE, have your callback function validate the input first. This can be done with a regular expression.
I'm not sure what behavior you want, but this will return any non-numeric character:
rmv = regexp(edit,'[^0-9]','match')
while this will return the numeric characters:
nums = regexp(edit,'\d*','match')
If you wanted to just remove any non-numeric character and leave the rest, you could do this:
function edit1_Callback(hObject, eventdata, handles)
...
edit=get(hObject,'string');
rmv = regexp(edit,'[^0-9]','match');
rmv = unique(rmv{:});
for loop = 1:length(rmv)
edit = strrep(edit,rmv(loop),'');
end
set(hObject,'String',edit);
Just note that this will remove a period in decimal numbers as well. If you do intend to keep it, update your regexp to
rmv = regexp(edit,'[^0-9\.]','match');
  3 Kommentare
Cris LaPierre
Cris LaPierre am 30 Jan. 2019
You can't prevent entry, but you can remove any non-numeric characters that are added. That's what the code I shared with you does.

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Produkte


Version

R2013b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by