Switch Case where case is a word_anynumber
Show older comments
I am trying to make a switch case where the case is satisfied by the following:
word_anynumber (ie word_1 or word_2 etc)
what do i do to achieve this?
The issue is that i want the case to do the same thing for any case with word_#, but i don't want to create cases for each number because i have a variable number of numbers each time this script runs.
Any help would be greatly appreciated.
-Jonathan
Accepted Answer
More Answers (2)
Fangjun Jiang
on 14 Nov 2011
0 votes
Use strfind(), strcmp() or strmatch(). You may also consider use "if-else" rather than 'case-switch"
if strfind(StrVariable,'word_')
1 Comment
Daniel Shub
on 15 Nov 2011
I think this will evaluate to true if StrVariable is of the form * word_*. It doesn't require word to be the first element, numbers to follow the underscore, or the numbers to be the final elements.
Jonathan
on 14 Nov 2011
If all of your cases are similar to what you describe, then you can use strtok like this.
a = 'word_4';
b = 'word_27';
c = 'byte_3';
d = 'bit_14';
switchStr = a;
switch strtok(switchStr, '_')
case 'word'
disp('word')
case 'byte'
disp('byte')
case 'bit'
disp('bit')
otherwise
disp('otherwise')
end
This displays 'word'. Try repeating this with switchStr set to b, c, and d.
6 Comments
Jonathan Crider
on 15 Nov 2011
bym
on 15 Nov 2011
how many numbers do you wish to distinguish? 1-10, 1-255,1-inf ?
Jonathan Crider
on 15 Nov 2011
Jonathan Crider
on 15 Nov 2011
Jonathan
on 15 Nov 2011
strtok does work in this case since "strtok('apple', '_')" returns the string "apple".
Jonathan
on 15 Nov 2011
a = 'apple';
b = 'orange';
c = 'banana';
d = 'grape_1';
e = 'grape_2';
f = 'grape_3';
switchStr = d; % goes through a through f
switch strtok(switchStr, '_')
case 'apple'
disp('apple')
case 'orange'
disp('orange')
case 'banana'
disp('banana')
case 'grape' % this is where i have a problem
disp('grapes')
end
Categories
Find more on Historical Contests in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!