Check for column in table

48 visualizzazioni (ultimi 30 giorni)
Rohith Sudheer
Rohith Sudheer il 10 Lug 2019
Risposto: Shubham Sangle il 10 Lug 2019
How do I search whether a column, lets say 'Column1', exists in a table, Table_1, without using strmatch as it is not recommended.

Risposte (2)

Kevin Phung
Kevin Phung il 10 Lug 2019
Modificato: Kevin Phung il 10 Lug 2019
any(ismember(Table_1.Properties.VariableNames,'Column1'))
strcmp works too, in place of ismember

Shubham Sangle
Shubham Sangle il 10 Lug 2019
Exist_Column = strcmp('My_Column',My_Table.Properties.VariableNames)
val = Exist_Column(Exist_Column==1) ;

Categorie

Scopri di più su Characters and Strings in Help Center e File Exchange

Prodotti

Community Treasure Hunt

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

Start Hunting!

Translated by