How to put a specific expression in a conditional statement?

I have 2 timetables. One contians headers that have "_Units" and the other does not. I am trying to create a conditional statement that searches the timetable then takes the search and implements it into a conditional statement.
I have tried a few different functions, but need a bit of direction.
if
disp('This is a excel file')
else
disp('This is an another file')
end

 採用された回答

Walter Roberson
Walter Roberson 2020 年 7 月 21 日

0 投票

if contains(strjoin(YourTable.Properties.VariableNames), '_Units_' )
You do not care which variable name contains the string, only that it appears at least once.

その他の回答 (0 件)

質問済み:

ZH
2020 年 7 月 21 日

回答済み:

2020 年 7 月 21 日

Community Treasure Hunt

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

Start Hunting!

Translated by