How do i make matlab diferentiate words in cell array

1 vue (au cours des 30 derniers jours)
Niki
Niki le 11 Jan 2023
Réponse apportée : Voss le 11 Jan 2023
'12100213.csv' '12100214.csv' '12100215.csv' '12100216.csv' '12113013.txt' '12120423.txt' '12120516.txt' ....
This is my cell array and i want to make matlab make the difference between csv and txt files so i can upload them differently.
thank you

Réponse acceptée

Voss
Voss le 11 Jan 2023
C = {'12100213.csv' '12100214.csv' '12100215.csv' '12100216.csv' '12113013.txt' '12120423.txt' '12120516.txt'};
[~,~,ext] = fileparts(C)
ext = 1×7 cell array
{'.csv'} {'.csv'} {'.csv'} {'.csv'} {'.txt'} {'.txt'} {'.txt'}
isCSV = strcmp(ext,'.csv')
isCSV = 1×7 logical array
1 1 1 1 0 0 0
isTXT = strcmp(ext,'.txt')
isTXT = 1×7 logical array
0 0 0 0 1 1 1

Plus de réponses (0)

Catégories

En savoir plus sur Cell Arrays dans Help Center et File Exchange

Produits


Version

R2019a

Community Treasure Hunt

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

Start Hunting!

Translated by