Info
Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.
Problem with regex in GUIDE
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Luis Miguel López Santamaría
am 14 Mai 2017
Geschlossen: MATLAB Answer Bot
am 20 Aug. 2021
Hello everybody,
I'm trying to write a regular expression my code is the next one:
expression = 'pi|[0-9]\s[0-9]|pi';
aux = get(handles.intervalo, 'String');
index = regexp(aux, expression);
empty = [];
c = isequal(index, empty);
if c == 1
errordlg('Tiene que ser de la forma [a b]', 'Error');
end
The problem is when a I write a expression like [pi e] don't give any error can anyone help?
Thank you.
0 Kommentare
Antworten (0)
Diese Frage ist geschlossen.
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!