is it possible to create array of strings or char from struct of cell arrays

3 views (last 30 days)
Apologies if I get some of the terminology wrong. I have a struct which is an array, with some cell values. So:
A(1).name='one', A(1).val=1, A(2).name='two', A(2).val=2.
What I'd like to do is create an array of strings from just the names. So, I'd like B=['one','two'].
if I do B=A(:).name I get B='onetwo'.
All help appreciated!

Accepted Answer

per isakson
per isakson on 21 Apr 2021
Edited: per isakson on 21 Apr 2021
There are character arrays (See Text and Characters)
A(1).name='one'; A(1).val=1; A(2).name='two'; A(2).val=2;
{A.name}
ans = 1×2 cell array
{'one'} {'two'}
[A.name]
ans = 'onetwo'
and there are string arrays
A(1).name="one"; A(1).val=1; A(2).name="two"; A(2).val=2;
[A.name]
ans = 1×2 string array
"one" "two"

More Answers (0)

Categories

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

Products


Release

R2017b

Community Treasure Hunt

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

Start Hunting!