Filter löschen
Filter löschen

Guide- coma

2 Ansichten (letzte 30 Tage)
john
john am 20 Mär. 2012
Hi, can you help me please? I have problem with comma ",". I need this:
If I write number into edittext with coma for example 4,3 or 34,4534 or 2342,44 , then I need to write for example into statictext "error". . . else into statictext "ok".
It is possible?

Akzeptierte Antwort

Daniel Shub
Daniel Shub am 20 Mär. 2012
Generally we like to see that you have put effort into trying to solve your problem. It looks like you have been trying things here: http://www.mathworks.com/matlabcentral/answers/32252-field-text-number and that this is not exactly an overlapping question ...
I start by defining a function iscomma
function iscomma(src, h)
if strfind(get(src, 'string'), ',')
set(h, 'string', 'error');
else
set(h, 'string', 'ok');
end
Then I create two uicontrols and set the callback of the edit box to iscomma
h1 = uicontrol('style', 'edit');
h2 = uicontrol('style', 'text', 'units', 'normalized', 'position', [0.5, 0.5, 0.5, 0.5]);
set(h1, 'Callback', @(src, evt)iscomma(src, h2))
  1 Kommentar
john
john am 20 Mär. 2012
Thank you .
I made some change
str = get(handles.edit,'String')
if strfind(str, ',')
set(handles.text, 'String','error');
else
set(handles.text, 'String','ok');
end;

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Dr. Seis
Dr. Seis am 20 Mär. 2012
Yes. Every time the user types something and then hits enter, or tab, or clicks somewhere else in the GUI, etc. the callback function associated with your edittext will execute and you can place a set there to change the static text to "error" or "ok" depending on whether the string you get from the edittext has a comma in it.

Kategorien

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

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by