How to check whether a column exist in a table?

510 ビュー (過去 30 日間)
Alon Rozen
Alon Rozen 2016 年 11 月 24 日
コメント済み: Nikolaus Koopmann 2024 年 7 月 2 日
Hi all,
I search for this question in the web and found the following solution: Suppose I have a table named 'My_Table' and want to check if it contains a column (field) named 'My_Column'. The code:
Exist_Column = strmatch('My_Column',My_Table.Properties.VariableNames)
should result in logical that answer the question. I checked it and it works. However, the Matlab editor commented that 'strmatch' is not a recommended function to use because it is about to be removed in future version and suggest instead the use of either 'strncmp' or 'validatestring'. Problem is that both do not return a logical and more steps are required to get the answer.
So, my question is: what is the simplest recommended way to determine if a certain column name exist in a table?
Thanks,
Alon
  1 件のコメント
Carlos Aguilar
Carlos Aguilar 2017 年 12 月 31 日
Just came across to this question. An anonymous function will also do the job (and will be reusable within the scope):
isTableCol = @(t, thisCol) ismember(thisCol, t.Properties.VariableNames);

サインインしてコメントする。

採用された回答

KSSV
KSSV 2016 年 11 月 24 日
Exist_Column = strcmp('My_Column',My_Table.Properties.VariableNames)
val = Exist_Column(Exist_Column==1) ;
  6 件のコメント
Gabriel Blanco
Gabriel Blanco 2019 年 6 月 25 日
Bonjour Nic!
Nikolaus Koopmann
Nikolaus Koopmann 2022 年 11 月 29 日
any("MyColumn" == string(My_Table.Properties.VariableNames))

サインインしてコメントする。

その他の回答 (2 件)

jkr
jkr 2019 年 5 月 14 日
sum(ismember(mx.Properties.VariableNames,'NameYouWantToCheck'))
returns 1 if found, 0 if not
  2 件のコメント
AusPollen
AusPollen 2021 年 5 月 23 日
Nice! although you don't need to sum if you switch the ismember arguments, ie. use ismember('My_Column',My_Table.Properties.VariableNames)
Nachiket Wadwankar
Nachiket Wadwankar 2024 年 2 月 9 日
This is exactly what I wanted. Thanks a lot for this trick!!

サインインしてコメントする。


Sean Lynch
Sean Lynch 2021 年 9 月 5 日
I used "any", but agree "ismember" is even better
exists = any(strcmp('Column-Name', My_Table.Properties.VariableNames))
  1 件のコメント
Nikolaus Koopmann
Nikolaus Koopmann 2024 年 7 月 2 日
no ismember is slow

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeEnvironment and Settings についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by