searching an array for a value embedded in a string

조회 수: 3 (최근 30일)
Stephen
Stephen 2019년 1월 29일
댓글: Kevin Phung 2019년 1월 30일
Probably this is hopelessly simple to solve, but I haven't found the way (being a newbie)
I have a number of large arrays that look like this (a small portion only shown):
I'm trying to find a way to search for and extract the "Pan Scale" value from each array (here, = 2 on line 123, red arrow). This element (Pan Scale) may not always be on line 123, so I can't just search for the 123rd row in all the arrays.
How do I search for the string "Pan Scale" and then how do I extract its value (the number after the equal sign)?
UPDATE: OK, I just found a way to get to the cell in my array (named "C"):
C(strcmpi(C(:,1),'Pan Scale = 2'));
but now, how to extract the value (i.e. here, 2)?

채택된 답변

Kevin Phung
Kevin Phung 2019년 1월 29일
편집: Kevin Phung 2019년 1월 29일
search = 'Pan Scale';
a = C{contains(C,search)} % if C is your cell array, locate index and access cell.
exp = '\d*'; %all consecutive numeric digits
val = str2num(cell2mat(regexp(a,exp,'match')))
^ you can use the above for your other elements too, like 'LightControl' or 'PinHoleDiameter,' etc.
documentation:
https://www.mathworks.com/help/matlab/ref/regexp.html
  댓글 수: 10
Stephen
Stephen 2019년 1월 30일
Wait again...FINALLY solved this mess myself. Primie example of 100 monkeys given infinite time on computers could generate a Shakespearean sonnet!
FYI:
clc;
[FileName,PathName] = uigetfile('*.txt','Select the txt file'); % select or enter the name of the txt file containing the ImageJ metadata
path=strcat(PathName,FileName); % construct a path for finding this txt file
opts = detectImportOptions(path); % list the options available in this file
opts.SelectedVariableNames = {'Var1','Var2'}; % choose to import only the columns named 'Var1' and 'Var2'
T = readtable(path,opts); % this imports the metadata into table T
C = table2cell(T); % convert table T to array C
search = 'Time Per Frame'; % define the variable, 'search' to = 'Time Per Frame'
a = C{contains(C(:,1),search)}; % C is your cell array; this locates index and access cell.
Index = find(contains(C(:,1),search)); % finds the row containing the string 'Time Per Frame'
val=C(Index,2); % creates the variable, val, = time per frame (number in the second column of that row)
scantime = cell2mat(val)/1000000 % generates variable, 'scantime', equal to value of time per frame (which is in microsec), in sec
Probably kludgey, but works.
Kevin Phung
Kevin Phung 2019년 1월 30일
woohoo!! You can probably condense a line or two, but that's not too important.
now I can finally sleep at night.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

madhan ravi
madhan ravi 2019년 1월 29일
편집: madhan ravi 2019년 1월 29일
The below code can extract the numeric digit/s equated to Pan Scale:
r=cellfun(@(x)regexp(x,'(?<=Pan Scale.{0,10})\d{0,10}\.?\d{0,10}',...
'match'),C,'un',0);
R=cellfun(@str2double,r,'un',0);
Result=vertcat(R{:}) % if you want the result to be a column vector
Result=[R{:}] % if you want the result to be a row vector
  댓글 수: 1
Stephen
Stephen 2019년 1월 30일
Thanks, Ravi. Being a newbie, I'm having a little easier time understanding and following Kevin's script. Nevertheless, I appreciate your help.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by