Using strfind to find character index in word

1 view (last 30 days)
hi, i have a script where i must find the index of the letter e in the word each
Guess1 = e;
HangWord = "each"
index = strfind(HangWord, 'Guess1')
this returns index=[]
thank you

Answers (2)

Stephen23
Stephen23 on 16 Sep 2019
>> HangWord = 'each';
>> Guess1 = 'e';
>> index = strfind(HangWord, Guess1)
index = 1

Walter Roberson
Walter Roberson on 16 Sep 2019
Guess1 = 'e';
HangWord = "each";
index = strfind(HangWord, Guess1);

Categories

Find more on Characters and Strings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!