Check for column in table

How do I search whether a column, lets say 'Column1', exists in a table, Table_1, without using strmatch as it is not recommended.

Answers (2)

Kevin Phung
Kevin Phung on 10 Jul 2019
Edited: Kevin Phung on 10 Jul 2019
any(ismember(Table_1.Properties.VariableNames,'Column1'))
strcmp works too, in place of ismember
Shubham Sangle
Shubham Sangle on 10 Jul 2019
Exist_Column = strcmp('My_Column',My_Table.Properties.VariableNames)
val = Exist_Column(Exist_Column==1) ;

Categories

Products

Asked:

on 10 Jul 2019

Answered:

on 10 Jul 2019

Community Treasure Hunt

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

Start Hunting!