How do I determine if a word has a certain character in it?
Mostrar comentarios más antiguos
How do I determine if a word has a certain character in it?
For example if I have a word ?????? and want to know if the letter c is in it?
Respuesta aceptada
Más respuestas (1)
Image Analyst
el 4 de Nov. de 2015
How about strfind()
index = strfind(string, 'c');
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!