How do I determine which pattern is in a string?

7 views (last 30 days)
Hi,
I have a table imported from Excel which contains the units of measurement within the Variable Names of the table properties, i.e.
MyTable.Properties.VariableNames = 1x 5 cell array
{'Node Number'} {'X Location (m)'} {'Y Location (m)'} {'Z Location (m)'} {'Normal Stress (Pa)'}
I'm trying to determine which units have been used in the Variable Names from a given list, pat = ["(m)", "(cm)", "(mm)", "(in)", "(ft)"] ;
So far I've tried functions such as contains and strcmp but that's only told me which cells of my variable names contain one of the given patterns, rather than which pattern. Is there a way to do this without having to use contains a separate time for each variable.
Thanks,
Nathan.

Accepted Answer

Star Strider
Star Strider on 31 Mar 2021
Edited: Star Strider on 31 Mar 2021
I am not certain what result you want.
Try this:
MyTable.Properties.VariableNames = {{'Node Number'} {'X Location (m)'} {'Y Location (m)'} {'Z Location (m)'} {'Normal Stress (Pa)'}};
Outc = regexp([MyTable.Properties.VariableNames{:}], '\(\w*\)','match')
Out = [Outc{:}]
producing:
Out =
1×4 cell array
{'(m)'} {'(m)'} {'(m)'} {'(Pa)'}
EDIT — (31 Mar 2021 at 15:52)
Another option:
Out = extractBetween([MyTable.Properties.VariableNames{2:end}], '(',')')
producing:
Out =
1×4 cell array
{'m'} {'m'} {'m'} {'Pa'}
The extractBetween function was introduced in R2016b.
  4 Comments

Sign in to comment.

More Answers (0)

Categories

Find more on Characters and Strings in Help Center and File Exchange

Products


Release

R2020b

Community Treasure Hunt

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

Start Hunting!