strfind
📝 Syntaxe
📥 Argument d'entrée
📤 Argument de sortie
📄 Description
💡 Exemple
🔗 Voir aussi
🕔 Historique
Version
📄 Description
Last updated
Last updated
str = 'To make a mountain out of a molehill';
k = strfind (str, 'in')
k= strfind(str, ' ')
k = strfind ({'abababada', 'beabebe', 'ab'}, 'aba')
A = {'Nel', 'son'; 'Toolboxes', 'Modules'}
k = strfind(A, 'o')
str = 'No pain no gain.';
k = strfind(str,'in','ForceCellOutput',true)
k = strfind(str,'in','ForceCellOutput',false)