Problem in displaying a substring
Afficher commentaires plus anciens
Problem in displaying a substring
Ex: I have this line:-
C:\abc\xyz\myName_1.wav
I want to display only 'myName' from this line
Réponse acceptée
Plus de réponses (1)
Grzegorz Knor
le 30 Déc 2011
doc fileparts
doc strfind
2 commentaires
Grzegorz Knor
le 30 Déc 2011
In your case:
[pathstr, name, ext] = fileparts('C:\abc\xyz\myName_1.wav')
idx = strfind(name,'_')
disp(name(1:idx-1))
Nishat Anjum Shaikh
le 30 Déc 2011
Catégories
En savoir plus sur Cell Arrays dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!